@mohasinac/appkit 2.3.1 → 2.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (253) hide show
  1. package/dist/client.d.ts +12 -8
  2. package/dist/client.js +7 -4
  3. package/dist/constants/api-endpoints.d.ts +4 -0
  4. package/dist/constants/api-endpoints.js +2 -0
  5. package/dist/core/contact-submissions.repository.d.ts +32 -0
  6. package/dist/core/contact-submissions.repository.js +49 -0
  7. package/dist/core/index.d.ts +2 -0
  8. package/dist/core/index.js +1 -0
  9. package/dist/features/about/components/HowPayoutsWorkView.js +1 -1
  10. package/dist/features/account/components/AddressFilters.d.ts +5 -0
  11. package/dist/features/account/components/AddressFilters.js +20 -0
  12. package/dist/features/account/components/AddressesIndexListing.d.ts +6 -0
  13. package/dist/features/account/components/AddressesIndexListing.js +51 -0
  14. package/dist/features/account/components/UserSidebar.d.ts +7 -3
  15. package/dist/features/account/components/UserSidebar.js +55 -7
  16. package/dist/features/account/hooks/useAddresses.d.ts +7 -0
  17. package/dist/features/account/hooks/useAddresses.js +12 -1
  18. package/dist/features/admin/actions/admin-read-actions.d.ts +12 -0
  19. package/dist/features/admin/actions/admin-read-actions.js +18 -0
  20. package/dist/features/admin/components/AdminBlogView.js +26 -2
  21. package/dist/features/admin/components/AdminCarouselView.js +18 -2
  22. package/dist/features/admin/components/AdminCategoriesView.js +27 -2
  23. package/dist/features/admin/components/AdminContactView.d.ts +4 -0
  24. package/dist/features/admin/components/AdminContactView.js +50 -0
  25. package/dist/features/admin/components/AdminFaqsView.js +19 -2
  26. package/dist/features/admin/components/AdminListingScaffold.d.ts +11 -2
  27. package/dist/features/admin/components/AdminListingScaffold.js +14 -3
  28. package/dist/features/admin/components/AdminNewsletterView.d.ts +4 -0
  29. package/dist/features/admin/components/AdminNewsletterView.js +50 -0
  30. package/dist/features/admin/components/AdminProductsView.js +30 -2
  31. package/dist/features/admin/components/AdminReviewsView.js +26 -2
  32. package/dist/features/admin/components/AdminStoresView.js +17 -2
  33. package/dist/features/admin/components/AdminUsersView.js +27 -2
  34. package/dist/features/admin/components/DataTable.d.ts +2 -1
  35. package/dist/features/admin/components/DataTable.js +18 -4
  36. package/dist/features/admin/components/index.d.ts +6 -0
  37. package/dist/features/admin/components/index.js +3 -0
  38. package/dist/features/admin/hooks/useAdminListingData.d.ts +3 -1
  39. package/dist/features/admin/hooks/useAdminListingData.js +12 -7
  40. package/dist/features/admin/server.d.ts +3 -0
  41. package/dist/features/admin/server.js +2 -0
  42. package/dist/features/auctions/components/AuctionDetailPageView.js +93 -47
  43. package/dist/features/auctions/components/AuctionFilters.d.ts +8 -0
  44. package/dist/features/auctions/components/AuctionFilters.js +12 -0
  45. package/dist/features/auctions/components/AuctionsListView.d.ts +6 -1
  46. package/dist/features/auctions/components/AuctionsListView.js +37 -5
  47. package/dist/features/auctions/schemas/index.d.ts +4 -4
  48. package/dist/features/blog/components/BlogFeaturedCard.d.ts +1 -7
  49. package/dist/features/blog/components/BlogFeaturedCard.js +4 -5
  50. package/dist/features/blog/components/BlogFilters.js +2 -1
  51. package/dist/features/blog/components/BlogIndexListing.js +14 -9
  52. package/dist/features/blog/components/BlogIndexPageView.d.ts +6 -1
  53. package/dist/features/blog/components/BlogIndexPageView.js +10 -2
  54. package/dist/features/blog/components/BlogListView.d.ts +2 -1
  55. package/dist/features/blog/components/BlogListView.js +10 -3
  56. package/dist/features/categories/components/CategoriesIndexListing.d.ts +1 -1
  57. package/dist/features/categories/components/CategoriesIndexListing.js +41 -38
  58. package/dist/features/categories/components/CategoriesIndexPageView.d.ts +6 -1
  59. package/dist/features/categories/components/CategoriesIndexPageView.js +41 -2
  60. package/dist/features/categories/components/CategoryDetailPageView.js +13 -6
  61. package/dist/features/categories/components/CategoryDetailTabs.d.ts +5 -0
  62. package/dist/features/categories/components/CategoryDetailTabs.js +17 -0
  63. package/dist/features/categories/components/CategoryFilters.js +2 -1
  64. package/dist/features/categories/components/CategoryGrid.d.ts +2 -1
  65. package/dist/features/categories/components/CategoryGrid.js +8 -6
  66. package/dist/features/categories/components/CategoryProductsListing.js +22 -11
  67. package/dist/features/categories/components/index.d.ts +2 -0
  68. package/dist/features/categories/components/index.js +1 -0
  69. package/dist/features/categories/hooks/useCategories.d.ts +20 -0
  70. package/dist/features/categories/hooks/useCategories.js +50 -1
  71. package/dist/features/categories/hooks/useCategoryTree.d.ts +17 -0
  72. package/dist/features/categories/hooks/useCategoryTree.js +65 -0
  73. package/dist/features/events/components/AdminEventEditorView.d.ts +6 -0
  74. package/dist/features/events/components/AdminEventEditorView.js +203 -0
  75. package/dist/features/events/components/AdminEventsView.js +28 -2
  76. package/dist/features/events/components/EventCard.js +4 -2
  77. package/dist/features/events/components/EventFilters.js +2 -1
  78. package/dist/features/events/components/EventsIndexListing.js +40 -10
  79. package/dist/features/events/components/EventsListPageView.d.ts +6 -1
  80. package/dist/features/events/components/EventsListPageView.js +40 -7
  81. package/dist/features/events/components/index.d.ts +2 -0
  82. package/dist/features/events/components/index.js +1 -0
  83. package/dist/features/events/hooks/useEvents.js +2 -0
  84. package/dist/features/events/types/index.d.ts +1 -0
  85. package/dist/features/homepage/components/BlogArticlesSection.js +1 -1
  86. package/dist/features/homepage/components/EventsSection.js +1 -1
  87. package/dist/features/homepage/components/FeaturedAuctionsSection.js +1 -1
  88. package/dist/features/homepage/components/FeaturedPreOrdersSection.js +1 -1
  89. package/dist/features/homepage/components/FeaturedProductsSection.js +1 -1
  90. package/dist/features/homepage/components/FeaturedStoresSection.js +1 -1
  91. package/dist/features/homepage/components/HeroCarousel.js +1 -1
  92. package/dist/features/homepage/components/MarketplaceHomepageView.js +27 -17
  93. package/dist/features/homepage/components/SectionCarousel.js +4 -4
  94. package/dist/features/homepage/components/ShopByCategorySection.js +2 -2
  95. package/dist/features/homepage/schemas/firestore.d.ts +1 -1
  96. package/dist/features/homepage/schemas/firestore.js +2 -1
  97. package/dist/features/layout/AppLayoutShell.d.ts +6 -2
  98. package/dist/features/layout/AppLayoutShell.js +7 -3
  99. package/dist/features/pre-orders/components/MarketplacePreorderCard.d.ts +3 -1
  100. package/dist/features/pre-orders/components/MarketplacePreorderCard.js +6 -2
  101. package/dist/features/pre-orders/components/PreOrderDetailPageView.js +80 -12
  102. package/dist/features/pre-orders/components/PreOrderFilters.d.ts +8 -0
  103. package/dist/features/pre-orders/components/PreOrderFilters.js +21 -0
  104. package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +2 -1
  105. package/dist/features/pre-orders/components/PreOrdersIndexListing.js +69 -10
  106. package/dist/features/pre-orders/components/PreOrdersListView.d.ts +6 -1
  107. package/dist/features/pre-orders/components/PreOrdersListView.js +26 -7
  108. package/dist/features/pre-orders/components/index.d.ts +2 -0
  109. package/dist/features/pre-orders/components/index.js +1 -0
  110. package/dist/features/products/components/AuctionsIndexListing.d.ts +2 -1
  111. package/dist/features/products/components/AuctionsIndexListing.js +61 -9
  112. package/dist/features/products/components/InteractiveProductCard.d.ts +2 -4
  113. package/dist/features/products/components/InteractiveProductCard.js +2 -2
  114. package/dist/features/products/components/ProductDetailPageView.d.ts +1 -1
  115. package/dist/features/products/components/ProductDetailPageView.js +116 -25
  116. package/dist/features/products/components/ProductFilters.d.ts +6 -11
  117. package/dist/features/products/components/ProductFilters.js +5 -3
  118. package/dist/features/products/components/ProductGrid.d.ts +8 -2
  119. package/dist/features/products/components/ProductGrid.js +20 -5
  120. package/dist/features/products/components/ProductTabsShell.d.ts +3 -11
  121. package/dist/features/products/components/ProductTabsShell.js +14 -14
  122. package/dist/features/products/components/ProductsIndexListing.js +73 -9
  123. package/dist/features/products/components/ProductsIndexPageView.d.ts +6 -1
  124. package/dist/features/products/components/ProductsIndexPageView.js +39 -6
  125. package/dist/features/products/components/RelatedProductsCarousel.d.ts +7 -0
  126. package/dist/features/products/components/RelatedProductsCarousel.js +11 -0
  127. package/dist/features/products/components/index.d.ts +1 -0
  128. package/dist/features/products/components/index.js +1 -0
  129. package/dist/features/products/hooks/useProducts.js +16 -0
  130. package/dist/features/products/repository/products.repository.d.ts +8 -0
  131. package/dist/features/products/repository/products.repository.js +2 -0
  132. package/dist/features/products/schemas/index.d.ts +8 -8
  133. package/dist/features/products/types/index.d.ts +12 -0
  134. package/dist/features/promotions/components/CouponsIndexListing.d.ts +9 -0
  135. package/dist/features/promotions/components/CouponsIndexListing.js +86 -0
  136. package/dist/features/promotions/components/PromotionsView.d.ts +11 -5
  137. package/dist/features/promotions/components/PromotionsView.js +6 -1
  138. package/dist/features/promotions/components/index.d.ts +4 -2
  139. package/dist/features/promotions/components/index.js +2 -1
  140. package/dist/features/reviews/components/ReviewDetailPageView.d.ts +4 -0
  141. package/dist/features/reviews/components/ReviewDetailPageView.js +20 -0
  142. package/dist/features/reviews/components/ReviewDetailShell.d.ts +7 -0
  143. package/dist/features/reviews/components/ReviewDetailShell.js +80 -0
  144. package/dist/features/reviews/components/ReviewFilters.d.ts +3 -3
  145. package/dist/features/reviews/components/ReviewFilters.js +5 -4
  146. package/dist/features/reviews/components/ReviewsIndexListing.d.ts +4 -3
  147. package/dist/features/reviews/components/ReviewsIndexListing.js +35 -51
  148. package/dist/features/reviews/components/ReviewsIndexPageView.d.ts +6 -1
  149. package/dist/features/reviews/components/ReviewsIndexPageView.js +49 -3
  150. package/dist/features/reviews/components/ReviewsList.js +9 -1
  151. package/dist/features/reviews/components/index.d.ts +1 -0
  152. package/dist/features/reviews/hooks/useReviews.js +15 -1
  153. package/dist/features/reviews/types/index.d.ts +6 -1
  154. package/dist/features/seller/components/SellerSidebar.d.ts +8 -4
  155. package/dist/features/seller/components/SellerSidebar.js +6 -4
  156. package/dist/features/seller/components/index.d.ts +30 -0
  157. package/dist/features/seller/components/index.js +17 -0
  158. package/dist/features/seller/hooks/useSellerStore.d.ts +2 -0
  159. package/dist/features/seller/hooks/useSellerStore.js +2 -0
  160. package/dist/features/seller/permission-map.d.ts +4 -2
  161. package/dist/features/seller/permission-map.js +16 -14
  162. package/dist/features/seller/schemas/index.d.ts +2 -2
  163. package/dist/features/stores/api/[storeSlug]/reviews/route.d.ts +1 -1
  164. package/dist/features/stores/api/[storeSlug]/reviews/route.js +24 -19
  165. package/dist/features/stores/components/InteractiveStoreCard.d.ts +0 -5
  166. package/dist/features/stores/components/InteractiveStoreCard.js +9 -9
  167. package/dist/features/stores/components/StoreAuctionsListing.js +27 -9
  168. package/dist/features/stores/components/StoreDetailLayoutView.js +2 -0
  169. package/dist/features/stores/components/StoreFilters.d.ts +5 -0
  170. package/dist/features/stores/components/StoreFilters.js +20 -0
  171. package/dist/features/stores/components/StoreHeader.js +2 -2
  172. package/dist/features/stores/components/StorePreOrdersListing.d.ts +5 -0
  173. package/dist/features/stores/components/StorePreOrdersListing.js +40 -0
  174. package/dist/features/stores/components/StorePreOrdersPageView.d.ts +4 -0
  175. package/dist/features/stores/components/StorePreOrdersPageView.js +21 -0
  176. package/dist/features/stores/components/StoreProductsListing.js +21 -11
  177. package/dist/features/stores/components/StoreReviewsListing.js +2 -7
  178. package/dist/features/stores/components/StoresIndexListing.js +42 -8
  179. package/dist/features/stores/components/StoresIndexPageView.d.ts +6 -1
  180. package/dist/features/stores/components/StoresIndexPageView.js +9 -2
  181. package/dist/features/stores/components/index.d.ts +3 -0
  182. package/dist/features/stores/components/index.js +1 -0
  183. package/dist/features/stores/hooks/useStores.d.ts +7 -1
  184. package/dist/features/stores/hooks/useStores.js +16 -3
  185. package/dist/features/stores/schemas/index.d.ts +2 -2
  186. package/dist/features/stores/types/index.d.ts +3 -0
  187. package/dist/features/wishlist/hooks/useGuestWishlist.d.ts +20 -0
  188. package/dist/features/wishlist/hooks/useGuestWishlist.js +49 -0
  189. package/dist/features/wishlist/hooks/useWishlistCount.d.ts +7 -0
  190. package/dist/features/wishlist/hooks/useWishlistCount.js +31 -0
  191. package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +56 -0
  192. package/dist/features/wishlist/hooks/useWishlistWithGuest.js +57 -0
  193. package/dist/features/wishlist/index.d.ts +3 -0
  194. package/dist/features/wishlist/index.js +3 -0
  195. package/dist/features/wishlist/utils/guest-wishlist.d.ts +22 -0
  196. package/dist/features/wishlist/utils/guest-wishlist.js +70 -0
  197. package/dist/index.d.ts +50 -1
  198. package/dist/index.js +63 -1
  199. package/dist/next/routing/route-map.d.ts +70 -36
  200. package/dist/next/routing/route-map.js +30 -22
  201. package/dist/seed/addresses-seed-data.js +62 -261
  202. package/dist/seed/beyblade-seed-data.d.ts +7 -0
  203. package/dist/seed/beyblade-seed-data.js +947 -0
  204. package/dist/seed/bids-seed-data.d.ts +10 -2
  205. package/dist/seed/bids-seed-data.js +220 -1071
  206. package/dist/seed/blog-posts-seed-data.d.ts +2 -2
  207. package/dist/seed/blog-posts-seed-data.js +455 -117
  208. package/dist/seed/cart-seed-data.d.ts +9 -9
  209. package/dist/seed/cart-seed-data.js +73 -74
  210. package/dist/seed/coupons-seed-data.d.ts +3 -4
  211. package/dist/seed/coupons-seed-data.js +3 -509
  212. package/dist/seed/events-seed-data.d.ts +2 -2
  213. package/dist/seed/events-seed-data.js +315 -476
  214. package/dist/seed/faq-seed-data.d.ts +18 -41
  215. package/dist/seed/faq-seed-data.js +1059 -1172
  216. package/dist/seed/hot-wheels-seed-data.d.ts +7 -0
  217. package/dist/seed/hot-wheels-seed-data.js +1365 -0
  218. package/dist/seed/index.d.ts +6 -1
  219. package/dist/seed/index.js +6 -1
  220. package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +4 -2
  221. package/dist/seed/pokemon-carousel-slides-seed-data.js +152 -268
  222. package/dist/seed/pokemon-categories-seed-data.d.ts +18 -21
  223. package/dist/seed/pokemon-categories-seed-data.js +424 -1004
  224. package/dist/seed/pokemon-coupons-seed-data.d.ts +6 -0
  225. package/dist/seed/pokemon-coupons-seed-data.js +465 -0
  226. package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +3 -2
  227. package/dist/seed/pokemon-homepage-sections-seed-data.js +67 -289
  228. package/dist/seed/pokemon-products-seed-data.js +662 -0
  229. package/dist/seed/pokemon-seed-bundle.d.ts +32 -11
  230. package/dist/seed/pokemon-seed-bundle.js +41 -11
  231. package/dist/seed/pokemon-stores-seed-data.d.ts +2 -3
  232. package/dist/seed/pokemon-stores-seed-data.js +56 -31
  233. package/dist/seed/pokemon-users-seed-data.d.ts +2 -2
  234. package/dist/seed/pokemon-users-seed-data.js +245 -261
  235. package/dist/seed/reviews-seed-data.d.ts +17 -2
  236. package/dist/seed/reviews-seed-data.js +519 -483
  237. package/dist/seed/site-settings-seed-data.js +14 -14
  238. package/dist/seed/store-addresses-seed-data.js +68 -50
  239. package/dist/seed/transformers-seed-data.d.ts +7 -0
  240. package/dist/seed/transformers-seed-data.js +510 -0
  241. package/dist/seed/wishlists-seed-data.d.ts +5 -1
  242. package/dist/seed/wishlists-seed-data.js +82 -4
  243. package/dist/server.d.ts +1 -0
  244. package/dist/server.js +2 -0
  245. package/dist/tokens/index.d.ts +6 -0
  246. package/dist/tokens/index.js +2 -0
  247. package/dist/ui/components/BaseListingCard.js +24 -26
  248. package/dist/ui/components/BaseListingCard.style.css +5 -5
  249. package/dist/ui/components/HorizontalScroller.d.ts +1 -1
  250. package/dist/ui/components/HorizontalScroller.js +19 -5
  251. package/dist/ui/components/SideDrawer.style.css +3 -11
  252. package/dist/ui/rich-text/RichText.js +19 -1
  253. package/package.json +1 -1
@@ -1,188 +1,245 @@
1
1
  /**
2
- * Blog Posts Seed Data — Anime / Otaku Marketplace
3
- * Sample blog posts across all categories for development and testing
2
+ * Blog Posts Seed Data — Pokemon TCG Card Collecting
3
+ * Sample blog posts covering Pokemon card collecting, grading, investing, and authentication.
4
4
  */
5
5
  import { BLOG_POST_FIELDS } from "../features/blog/schemas";
6
6
  // Dynamic date helpers
7
7
  const NOW = new Date();
8
8
  const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
9
9
  export const blogPostsSeedData = [
10
- // -- Featured / Published ----------------------------------------------
10
+ // -- Featured / Published -----------------------------------------------
11
11
  {
12
- id: "blog-top-10-rarest-anime-figures-2026-guides",
13
- title: "Top 10 Rarest Anime Figures You Can Actually Buy in 2026",
14
- slug: "top-10-rarest-anime-figures-2026",
15
- excerpt: "From limited-run Kotobukiya ARTFX statues to out-of-print Good Smile Company Nendoroids — we rank the 10 most coveted figures that still occasionally surface on the secondary market.",
16
- content: `<h2>1. Evangelion Unit-01 Ver. Ka MegaHouse Master Grade</h2><p>Originally released in 2012 as a convention exclusive, this 1/60-scale articulated statue regularly commands50,000+ at auction. Its translucent AT-Field base and hand-painted panel lines make it the crown jewel of any Eva collection.</p><h2>2. Good Smile CompanyRem Wedding Dress 1/7 Scale</h2><p>First sold exclusively at Wonder Festival 2019, Rem's wedding version shipped only to Japan-based buyers and sold out in minutes. Secondary market prices hover around ₹25,000–35,000 worldwide.</p><h2>3. Kotobukiya ARTFX J Makima 1/7 (Chainsaw Man)</h2><p>Released in early 2025, this figure sold out globally in 48 hours. Sculpted by Takashi Tanaka, its flowing coat and hypnotic eye detail set a new bar for Chainsaw Man merchandise.</p><h2>4. AlterFrieren 1/7 Scale (Beyond Journey's End)</h2><p>Alter's 2025 announcement caused the internet to collectively lose its mind. Pre-orders sold out in under two hours, and secondary listings are already appearing at retail.</p><h2>5. Max Factory Saber Alter Wedding Dress (Fate/Stay Night)</h2><p>A Wonder Festival exclusive from 2017, this 1/7-scale figure features hand-applied gold leaf details on the gown trim and is considered one of the finest Fate figures ever produced.</p><h2>6–10: The Rest of Our List</h2><p>Spots 6 through 10 include the Neon Genesis Evangelion Production Models by Gainax (hand-autographed by Anno), a sealed 1st-edition Pokémon Charizard PSA-10, the Spirited Away No-Face resin limited run, and more. <a href="/products">Browse our current listings</a> some of these have just appeared on LetItRip.</p>`,
17
- coverImage: "https://picsum.photos/seed/anime-figures-top10/1200/630",
12
+ id: "blog-top-10-valuable-base-set-pokemon-cards-2026-guides",
13
+ title: "Top 10 Most Valuable Base Set Pokemon Cards in 2026",
14
+ slug: "top-10-valuable-base-set-pokemon-cards-2026",
15
+ excerpt: "From the iconic 1st Edition Charizard to the sleeper hit Chansey — we rank the 10 most valuable original Base Set cards and what they're fetching on the market in 2026.",
16
+ content: `<h2>1. 1st Edition CharizardBase Set #4 (PSA 10)</h2><p>The undisputed king of Pokemon TCG collecting. A PSA 10 1st Edition Charizard crossed75 lakh at auction in 2025 and continues to appreciate. Even a raw Near Mint copy commands ₹80,000–₹1,20,000 depending on centering. This card alone defines the hobby for an entire generation.</p><h2>2. 1st Edition BlastoiseBase Set #2 (PSA 9)</h2><p>Blastoise is the sleeper pick of the set. PSA 9 copies have climbed to ₹18,000–₹30,000 as collectors who couldn't afford Charizard turned their attention here. The turtle shell holo pattern is stunning in high grade.</p><h2>3. 1st Edition Venusaur Base Set #15 (PSA 8+)</h2><p>Venusaur has historically been the weakest of the three starter holos, but 2026 has seen renewed interest. A PSA 8 now trades around ₹8,000–₹14,000 — still highly accessible compared to its Fire rival.</p><h2>4. Mewtwo Base Set #10 (PSA 9)</h2><p>The Genetic Pokemon. Mewtwo's holo is sharp, clean, and one of the most recognisable in all of TCG history. PSA 9 copies fetch ₹40,000–₹65,000 in 2026. Its Psychic-type exclusivity makes it a must for theme collectors.</p><h2>5. GyaradosBase Set #6 (PSA 8)</h2><p>Gyarados has some of the most dramatic full-art holo artwork in the entire Base Set. PSA 8 copies are trading around ₹7,000–₹12,000, making this an excellent entry point for new collectors.</p><h2>6. ZapdosBase Set #16 (PSA 9)</h2><p>The legendary Electric bird is the most undervalued of the three Birds trio. Near Mint raw copies are available for ₹5,000–₹9,000 — a relative bargain if you expect the gap to close versus Articuno and Moltres.</p><h2>7. Chansey — Base Set #3</h2><p>Chansey is the surprise entry. At 120 HP it had the highest HP in the original set, and its Colorless type kept it playable. Raw NM copies trade around ₹3,500–₹7,000 — a card with significant upside as awareness grows.</p><h2>8. Professor Oak Base Set #88 (Trainer)</h2><p>The most powerful Trainer card ever printed in the original format. Draw 7 cards and restart your hand. NM copies are surprisingly affordable at ₹1,500–₹3,500, and PSA 9 graded copies regularly sell for ₹8,000+.</p><h2>9. Pikachu — Base Set #58 (Red Cheeks / Yellow Cheeks Variant)</h2><p>The mascot card exists in two variants — Red Cheeks (more common) and Yellow Cheeks (rarer, higher value). Yellow Cheeks PSA 9 copies fetch ₹6,000–₹12,000. Always check the variant before grading.</p><h2>10. 1st Edition Nidoking — Base Set #11</h2><p>Nidoking rounds out our list. Consistently overlooked, a PSA 9 1st Edition copy has been trading upward and represents excellent value for a complete Base Set holo rare collection.</p>`,
17
+ coverImage: "https://images.pokemontcg.io/base1/4_hires.png",
18
18
  category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
19
19
  tags: [
20
- "figures",
21
- "rare",
22
- "collectibles",
23
- "gunpla",
24
- "nendoroid",
25
- "scale-figures",
20
+ "base-set",
21
+ "charizard",
22
+ "valuable",
23
+ "investment",
24
+ "1st-edition",
25
+ "top-10",
26
26
  ],
27
27
  isFeatured: true,
28
28
  status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
29
29
  publishedAt: daysAgo(58),
30
30
  authorId: "user-admin-user-admin",
31
31
  authorName: "Admin User",
32
- readTimeMinutes: 8,
33
- views: 4723,
34
- metaTitle: "Top 10 Rarest Anime Figures to Buy in 2026 | LetItRip",
35
- metaDescription: "Discover the 10 rarest anime figures still available on the secondary market in 2026 — with prices, rarity scores, and buying tips.",
32
+ readTimeMinutes: 9,
33
+ views: 6241,
34
+ metaTitle: "Top 10 Most Valuable Pokemon Base Set Cards in 2026 | LetItRip",
35
+ metaDescription: "Discover the 10 most valuable original Base Set Pokemon cards in 2026 — with prices, grading tips, and why Charizard still reigns supreme.",
36
36
  createdAt: daysAgo(60),
37
37
  updatedAt: daysAgo(58),
38
38
  },
39
39
  {
40
- id: "blog-how-to-start-your-gunpla-journey-tips",
41
- title: "How to Start Your Gunpla Journey: A Complete Beginner's Guide",
42
- slug: "how-to-start-gunpla-journey-beginners-guide",
43
- excerpt: "Overwhelmed by High Grade, Master Grade, and Perfect Grade? This guide walks you through every Gunpla grade, the tools you need, and how to pick your first kit without regret.",
44
- content: `<h2>What Is Gunpla?</h2><p>Gunpla (Gundam Plastic Models) are injection-moulded model kits produced by Bandai since 1980. They require no glue, snap together perfectly, and come in grades ranging from beginner-friendly to achingly complex.</p><h2>Understanding the Grades</h2><ul><li><strong>SD (Super Deformed)</strong> Chibi-proportioned, ~50 pieces, great for kids and first-timers.</li><li><strong>HG (High Grade, 1/144)</strong> — The sweet spot for beginners. Affordable (₹800–₹2,500), articulated, and plentiful.</li><li><strong>RG (Real Grade, 1/144)</strong> Advanced inner-frame detail in a small footprint. Not for absolute beginners.</li><li><strong>MG (Master Grade, 1/100)</strong> Rich inner skeleton, panel lines, and accessories. 3–6 hours build time.</li><li><strong>PG (Perfect Grade, 1/60)</strong> — The mountain to climb. LED-lit options, 400+ pieces, 15–30 hours. Our Gundam Wing Zero Custom is an example.</li></ul><h2>Essential First-Time Tools</h2><p>You only need three things to start: a pair of Tamiya side-cutters (₹600), a hobby knife (₹300), and a grey panel-lining pen (₹350). Everything else is optional.</p><h2>Your First Kit Recommendation</h2><p>Start with an HG RX-78-2 or an HG Zaku II both are ~₹900, have clean designs, and teach you the fundamentals without frustration.</p><h2>Where to Buy</h2><p>LetItRip lists both new and second-hand Gunpla, including rare PG builds like our <a href="/products">Wing Zero Custom</a>. Pre-orders are available for upcoming Bandai releases.</p>`,
45
- coverImage: "https://picsum.photos/seed/gunpla-beginner-guide/1200/630",
40
+ id: "blog-how-to-grade-pokemon-cards-psa-vs-beckett-tips",
41
+ title: "How to Grade Your Pokemon Cards PSA vs. Beckett Guide",
42
+ slug: "how-to-grade-pokemon-cards-psa-vs-beckett",
43
+ excerpt: "Grading transforms a raw card into a certified, tradeable asset. This guide walks you through PSA and Beckett grading — costs, timelines, what graders look for, and which scale suits your collection goals.",
44
+ content: `<h2>Why Grade Your Pokemon Cards?</h2><p>A PSA 9 Charizard isn't just a beautiful card it's a verified asset. Grading encases the card in a tamper-evident holder, assigns a standardised grade, and dramatically increases resale value and buyer confidence. A raw NM Charizard might fetch ₹40,000; the same card in a PSA 9 slab regularly sells for ₹90,000–₹1,50,000.</p><h2>PSA Professional Sports Authenticator</h2><p>PSA is the world's most recognised grading authority for Pokemon TCG. Their 1–10 scale is widely understood by buyers and sellers globally, making PSA-graded cards the most liquid on the secondary market.</p><ul><li><strong>PSA 10 (Gem Mint):</strong> Perfect centering, four sharp corners, no scratches or print defects. The holy grail.</li><li><strong>PSA 9 (Mint):</strong> One minor imperfection allowed often a tiny corner bevel or 55/45 centering. Excellent investment grade.</li><li><strong>PSA 8 (Near Mint-Mint):</strong> Light wear on 1–2 corners, or centering up to 65/35. Still highly collectible.</li><li><strong>PSA 7 (Near Mint):</strong> Light surface marks, slightly miscut. Good entry-level investment.</li></ul><h2>Beckett (BGS / BVG)</h2><p>Beckett grades on four sub-scores Centering, Corners, Edges, and Surface — then averages them to a 1–10 scale. Their ultra-rare BGS 9.5 "Black Label" (all four sub-scores at 9.5) commands significant premiums. Beckett is preferred by high-end collectors who want detailed condition breakdowns.</p><h2>Preparation: What to Do Before Submitting</h2><ol><li>Clean the card with a microfibre cloth — no liquids.</li><li>Store in a penny sleeve then a top-loader for transit.</li><li>Photograph both sides under bright light to document condition pre-submission.</li><li>Use a submission service or send directly via the PSA/Beckett website.</li></ol><h2>Current Turnaround Times (2026)</h2><p>PSA Economy (slowest): 6–9 months. PSA Standard: 3–4 months. PSA Express: 4–6 weeks. Beckett Standard: 4–8 weeks. Budget for grading costs of ₹1,500–₹8,000 per card depending on declared value and tier.</p><h2>Which Should You Choose?</h2><p>For most Base Set singles, choose PSA — the liquidity premium and global recognition justify it. For modern cards or slabs where you want sub-scores, Beckett is the better choice.</p>`,
45
+ coverImage: "https://images.pokemontcg.io/base1/10_hires.png",
46
46
  category: BLOG_POST_FIELDS.CATEGORY_VALUES.TIPS,
47
- tags: ["gunpla", "beginners", "model-kits", "bandai", "how-to", "guide"],
47
+ tags: ["grading", "psa", "beckett", "how-to", "guide", "authentication"],
48
48
  isFeatured: true,
49
49
  status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
50
50
  publishedAt: daysAgo(50),
51
51
  authorId: "user-admin-user-admin",
52
52
  authorName: "Admin User",
53
53
  readTimeMinutes: 10,
54
- views: 6891,
55
- metaTitle: "Complete Beginner's Guide to Gunpla 2026 | LetItRip",
56
- metaDescription: "New to Gunpla? Learn every grade from SD to Perfect Grade, the tools you need, and which kit to buy first.",
54
+ views: 7823,
55
+ metaTitle: "How to Grade Pokemon Cards — PSA vs Beckett 2026 Guide | LetItRip",
56
+ metaDescription: "Complete guide to grading your Pokemon cards with PSA and Beckett — costs, timelines, what graders check, and which service to choose.",
57
57
  createdAt: daysAgo(52),
58
58
  updatedAt: daysAgo(50),
59
59
  },
60
60
  {
61
- id: "blog-letitrip-launches-auction-feature-news",
62
- title: "LetItRip Launches Live Auction Feature for Rare Anime Collectibles",
63
- slug: "letitrip-launches-live-auction-feature-anime-collectibles",
64
- excerpt: "Today we're thrilled to announce our live auction platform the best way to score rare figures, TCG cards, and production art at prices set by the community.",
65
- content: `<h2>Introducing Live Auctions</h2><p>LetItRip's auction feature lets verified sellers list rare anime collectibles from out-of-print Nendoroids to original Studio Ghibli production cels — and buyers bid in real time. Every listing is authenticated by our team before going live.</p><h2>How It Works</h2><ol><li>Browse open auctions on the <a href="/auctions">Auctions page</a>.</li><li>Place a bid you'll be instantly notified by push notification if outbid.</li><li>Win the auction and check out securely within 24 hours.</li><li>Receive a Certificate of Authenticity with every winning lot.</li></ol><h2>What Can Be Auctioned?</h2><p>Scale figures, Nendoroids, Funko Pop vaulted editions, Pokemon TCG graded cards, original anime production art, autographed merchandise, limited-run apparel, and complete manga sets.</p><h2>Seller Benefits</h2><p>Sellers get competitive, market-driven prices without constantly dropping their asking price. Payouts are processed within 3–5 business days after buyer confirmation. Our Auction Escrow service protects both parties throughout.</p>`,
66
- coverImage: "https://picsum.photos/seed/auction-launch-anime/1200/630",
61
+ id: "blog-pokemon-card-investment-market-analysis-2026-news",
62
+ title: "The Rise of Pokemon Card Investment Market Analysis 2026",
63
+ slug: "pokemon-card-investment-market-analysis-2026",
64
+ excerpt: "Pokemon cards have outperformed many traditional asset classes over the past five years. We analyse the 2026 market, identify the strongest investment segments, and examine what's driving demand.",
65
+ content: `<h2>The Numbers Don't Lie</h2><p>Between 2020 and 2026, PSA 10 Base Set Charizard has appreciated from approximately ₹5 lakh to over ₹75 lakh a 1,400% return. Even common Base Set cards in top grade have seen 300–500% gains. The Pokemon TCG market is no longer a hobby curiosity; it is a genuine alternative asset class attracting institutional attention.</p><h2>Why Pokemon Cards?</h2><p>Three forces drive the market. First, nostalgia millennials who grew up with these cards now have disposable income and want to reclaim childhood. Second, scarcity — Base Set print runs were not infinite, and high-grade copies become rarer each year as cards remain in play or degrade. Third, grading infrastructure the existence of PSA and Beckett as trusted third parties has created a liquid, standardised market where price discovery is possible.</p><h2>The Strongest Investment Segments in 2026</h2><ul><li><strong>1st Edition Base Set Holos (PSA 8+):</strong> The blue-chip end of the market. Illiquid, expensive, but the most inflation-resistant.</li><li><strong>Shadowless Base Set Holos (PSA 9):</strong> Printed after 1st Edition but before the Unlimited print run, Shadowless cards are undersupplied relative to demand. Strong upside.</li><li><strong>Sealed Base Set Booster Packs:</strong> WOTC-era sealed product is mathematically finite. Each box opened reduces supply. Prices have tripled since 2022.</li><li><strong>Base Set Pikachu Variants (Red Cheeks / Yellow Cheeks):</strong> Mascot appeal plus genuine scarcity for Yellow Cheeks creates collector demand independent of competitive play.</li></ul><h2>Risks to Consider</h2><p>No investment is risk-free. The Pokemon card market is illiquid compared to stocks, has high transaction costs (grading fees, marketplace commissions of 8–15%), and is subject to trend cycles. New print runs of modern sets occasionally draw investment capital away from vintage. Always buy what you love — financial returns are a bonus, not a guarantee.</p><h2>LetItRip's Role</h2><p>Our marketplace connects serious sellers of authenticated Pokemon singles and sealed product with buyers who understand the market. Every auction listing goes through our verification process. <a href="/auctions">Browse active auctions</a> to see current market pricing in real time.</p>`,
66
+ coverImage: "https://images.pokemontcg.io/base1/2_hires.png",
67
67
  category: BLOG_POST_FIELDS.CATEGORY_VALUES.NEWS,
68
- tags: ["auctions", "platform", "feature", "launch", "news", "collectibles"],
68
+ tags: [
69
+ "investment",
70
+ "market",
71
+ "2026",
72
+ "base-set",
73
+ "pokemon-tcg",
74
+ "analysis",
75
+ ],
69
76
  isFeatured: false,
70
77
  status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
71
78
  publishedAt: daysAgo(43),
72
79
  authorId: "user-admin-user-admin",
73
80
  authorName: "Admin User",
74
- readTimeMinutes: 4,
75
- views: 3210,
76
- metaTitle: "LetItRip Launches Anime Collectible Auction Platform | News",
77
- metaDescription: "LetItRip announces its live auction feature for rare anime figures, TCG cards, and production art. Bid, win, and collect.",
81
+ readTimeMinutes: 7,
82
+ views: 4318,
83
+ metaTitle: "Pokemon Card Investment Market Analysis 2026 | LetItRip",
84
+ metaDescription: "Comprehensive 2026 analysis of the Pokemon card investment market — performance data, top segments, and risk factors for serious collectors.",
78
85
  createdAt: daysAgo(44),
79
86
  updatedAt: daysAgo(43),
80
87
  },
81
88
  {
82
- id: "blog-buyer-seller-protection-policy-updates-updates",
83
- title: "Updated Buyer & Seller Protection Policies for Anime Merchandise",
84
- slug: "updated-buyer-seller-protection-policies-anime-2026",
85
- excerpt: "We've strengthened our protection policies for collectible merchandise here's a clear breakdown of what changed for figures, TCG cards, artbooks, and cosplay.",
86
- content: `<h2>Key Changes Effective 1 February 2026</h2><p><strong>Buyers:</strong> The return window for sealed collectibles is extended from 7 to 14 days. For opened figures, the window remains 7 days but now includes a condition-based partial refund option if items arrive damaged.</p><p><strong>Authentication Guarantee:</strong> All auction lots now ship with a QR-coded Certificate of Authenticity, verified against our seller registry. If an item is found to be inauthentic, you receive a full refund plus ₹500 store credit.</p><p><strong>Sellers:</strong> We've introduced a dispute resolution SLA; all buyer claims are reviewed within 48 hours. Sellers maintaining a dispute rate below 0.5% automatically earn a 'Verified Otaku Seller' badge.</p><h2>Graded Card Policy</h2><p>PSA/BGS-graded cards must ship in rigid mailers inside bubble wrap. Any damage in transit is covered by our ₹5,000 Shipping Protection policy at no extra cost.</p><h2>Why We Made These Changes</h2><p>Over 2,400 survey responses from our anime collector community guided these updates. Faster refunds and clearer authentication processes topped the wishlist and we delivered.</p>`,
87
- coverImage: "https://picsum.photos/seed/policy-update-anime/1200/630",
88
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.UPDATES,
89
- tags: ["policy", "protection", "returns", "authentication", "collectibles"],
89
+ id: "blog-1st-edition-vs-unlimited-base-set-how-to-identify-guides",
90
+ title: "Identifying First Edition vs. Unlimited Base Set Cards — The Complete Guide",
91
+ slug: "identifying-first-edition-vs-unlimited-base-set-pokemon",
92
+ excerpt: "The difference between a 1st Edition Charizard and an Unlimited copy can be worth lakhs of rupees. Learn exactly how to identify print runs — 1st Edition, Shadowless, and Unlimited — and never overpay again.",
93
+ content: `<h2>The Three Print Runs of Base Set</h2><p>Base Set was printed in three distinct runs, each with observable differences. Understanding them is essential before buying or selling any Base Set card.</p><h2>1st Edition (Most Valuable)</h2><p>First Edition Base Set cards have two definitive identifiers:</p><ul><li><strong>1st Edition Stamp:</strong> A small black circular stamp reading "Edition 1" appears on the left side of the card, below the Pokemon's artwork and above the card description box.</li><li><strong>No Drop Shadow:</strong> On First Edition and Shadowless prints, there is no drop shadow behind the right side and bottom of the Pokemon's image box. The box appears to sit directly against the background.</li></ul><p>The First Edition stamp is impossible to fake convincingly under a loupe look for crisp edges and correct font weight.</p><h2>Shadowless (Intermediate, Still Premium)</h2><p>Shadowless Base Set cards do not have the 1st Edition stamp but also lack the drop shadow. They were printed in very limited quantities after the First Edition run and before WOTC standardised the Unlimited printing. Shadowless cards trade at a significant premium over Unlimited but are typically 40–70% the value of the equivalent 1st Edition copy.</p><h2>Unlimited (Most Common)</h2><p>Unlimited Base Set cards have:</p><ul><li>No 1st Edition stamp</li><li>A visible drop shadow on the right side and bottom of the Pokemon artwork box</li><li>Slightly different colour saturation in some print runs (often more yellow-shifted)</li></ul><p>Unlimited cards are still collectible and beautiful — they simply don't command the same premium as First Edition or Shadowless.</p><h2>Quick Identification Checklist</h2><ol><li>Look for the 1st Edition stamp below the artwork → If present: 1st Edition</li><li>No stamp but no drop shadow → Shadowless</li><li>No stamp with drop shadow → Unlimited</li></ol><h2>Why This Matters When Buying</h2><p>Always request high-resolution photos of both the stamp area and the artwork box edge before purchasing any Base Set holo raw. On LetItRip, our seller guidelines require clear photos of these areas. <a href="/products">Browse verified Base Set listings</a> all our featured sellers document print run in their specifications.</p>`,
94
+ coverImage: "https://images.pokemontcg.io/base1/4_hires.png",
95
+ category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
96
+ tags: [
97
+ "1st-edition",
98
+ "shadowless",
99
+ "unlimited",
100
+ "base-set",
101
+ "identification",
102
+ "authentication",
103
+ ],
90
104
  isFeatured: false,
91
105
  status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
92
106
  publishedAt: daysAgo(36),
93
107
  authorId: "user-admin-user-admin",
94
108
  authorName: "Admin User",
95
- readTimeMinutes: 5,
96
- views: 1845,
97
- metaTitle: "Updated Collectibles Protection Policies Feb 2026 | LetItRip",
98
- metaDescription: "LetItRip updates buyer and seller protection policies for anime merchandise authentication guarantees, extended returns, and a Verified Otaku Seller programme.",
109
+ readTimeMinutes: 8,
110
+ views: 5102,
111
+ metaTitle: "1st Edition vs Unlimited Base Set Pokemon Cards — How to Identify | LetItRip",
112
+ metaDescription: "Learn to identify 1st Edition, Shadowless, and Unlimited Base Set Pokemon cards with our definitive visual guide avoid overpaying on the secondary market.",
99
113
  createdAt: daysAgo(38),
100
114
  updatedAt: daysAgo(36),
101
115
  },
102
116
  {
103
- id: "blog-figure-photography-tips-collection-tips",
104
- title: "Photography Tips for Showcasing Your Figure Collection Online",
105
- slug: "photography-tips-anime-figure-collection",
106
- excerpt: "Great photos move listings faster and command higher bids. Learn how to use natural light, dioramas, and your phone camera to make your figures look gallery-worthy.",
107
- content: `<h2>Tip 1 Use a Lightbox or North-Facing Window</h2><p>Hard shadows kill figure photos. A ₹500 collapsible lightbox from Amazon, or a north-facing window at midday, gives you the soft, even light that makes paint apps and sculpt details pop without blown-out highlights.</p><h2>Tip 2 Match the Base to the Series</h2><p>Place a Dragon Ball figure on a rocky terrain texture sheet, or put a Ghibli figure on green moss. Context shots like these dramatically increase click-through rates on listings.</p><h2>Tip 3Shoot at Eye Level or Below</h2><p>Shooting at the figure's eye level (or up at it slightly) creates a heroic, dimensional look. Shooting down makes figures look like cheap toys avoid it.</p><h2>Tip 4 Document Every Flaw Clearly</h2><p>Pre-owned collectibles must have honest photos of every scuff, paint chip, and joint wear. Buyers who receive items matching the photos leave 5-star reviews. Surprises create disputes.</p><h2>Tip 5 Include Scale Reference</h2><p>Place a coin, a ruler, or a known-size item beside the figure. Buyers need to understand size relative to their display shelf before committing to a ₹15,000 bid.</p><h2>Tip 6 Edit Minimally</h2><p>Adjust brightness and contrast only never change colours. The buyer should receive exactly what they see in your listing photos.</p>`,
108
- coverImage: "https://picsum.photos/seed/figure-photography-tips/1200/630",
117
+ id: "blog-pokemon-card-conditions-guide-mint-nm-played-tips",
118
+ title: "Guide to Pokemon Card Conditions: Mint, Near Mint, Lightly Played, and Beyond",
119
+ slug: "pokemon-card-conditions-guide-mint-near-mint-played",
120
+ excerpt: "Condition is everything in Pokemon card collecting. Understanding the difference between Near Mint and Lightly Played can mean a price difference of 30–50%. Here's how to assess and communicate condition accurately.",
121
+ content: `<h2>Why Condition Matters So Much</h2><p>A PSA 9 Charizard is worth roughly twice a PSA 8 Charizard. That gap exists because of a fraction of a millimetre of corner wear or a subtle surface scratch. Understanding card condition before you buy or grade is the single most important skill a Pokemon collector can develop.</p><h2>The Standard Condition Scale</h2><p>The hobby uses a relatively standardised condition scale, though terminology varies slightly between sellers, graders, and regions. Here's the definitive guide:</p><h3>Gem Mint / Mint (PSA 10 / PSA 9.5)</h3><p>Perfect in every observable way. Four sharp, perfectly square corners. No whitening, no scratches on the holo surface, perfect or near-perfect centering (50/50 to 55/45). Surface is clean under bright light and a loupe. This condition is extremely rare for Base Set cards — most were well-played as children.</p><h3>Near Mint (PSA 8–9)</h3><p>The highest condition most collectors will realistically encounter in a raw Base Set card. Allows for one minor imperfection light corner wear on one corner, centering up to 60/40, or a tiny surface mark invisible to the naked eye. This is the sweet spot for value and appearance.</p><h3>Lightly Played (LP) — (PSA 6–7)</h3><p>Visible but minor wear: light whitening on 2–3 corners, centering up to 65/35, light scratches on the holo surface that are only visible under direct light at an angle. Still a beautiful card in hand.</p><h3>Moderately Played (MP) — (PSA 4–5)</h3><p>Obvious wear: creasing on corners, visible holo scratching, potentially a very light bend. Cards in this range are generally collected for playability or as placeholders, not investment.</p><h3>Heavily Played (HP) / Poor (PSA 1–3)</h3><p>Significant damage: deep creases, heavy corner wear, water damage, major holo scratching, tears. These cards are valued for their artwork and sentimental significance only.</p><h2>Assessing Condition: Practical Steps</h2><ol><li>Examine corners under bright light — use a 10x loupe for accuracy.</li><li>Tilt the card under a lamp to check holo surface for scratches.</li><li>Hold the card face-down and check for creases by gently flexing (don't stress the card).</li><li>Check centering: measure the white borders on all four sides. Greater than 60/40 starts to affect grade.</li></ol><h2>Condition Descriptions on LetItRip</h2><p>All LetItRip sellers are required to use standardised condition terminology and provide photos that clearly show any wear. If a card arrives in worse condition than described, our buyer protection policy covers you. <a href="/products">Browse graded and raw listings</a> with verified condition reports.</p>`,
122
+ coverImage: "https://images.pokemontcg.io/base1/15_hires.png",
109
123
  category: BLOG_POST_FIELDS.CATEGORY_VALUES.TIPS,
110
- tags: ["seller", "photography", "figures", "listing", "tips", "display"],
111
- isFeatured: false,
112
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
113
- publishedAt: daysAgo(32),
114
- authorId: "user-admin-user-admin",
115
- authorName: "Admin User",
116
- readTimeMinutes: 6,
117
- views: 2234,
118
- metaTitle: "Figure Photography Tips for Anime Sellers | LetItRip",
119
- metaDescription: "6 actionable tips for photographing anime figures and collectibles to create listings that sell faster and attract higher bids.",
120
- createdAt: daysAgo(34),
121
- updatedAt: daysAgo(32),
122
- },
123
- {
124
- id: "blog-community-spotlight-jan-2026-community",
125
- title: "Community Spotlight: January 2026 Top Collectors & Bidders",
126
- slug: "community-spotlight-january-2026-collectors",
127
- excerpt: "Meet the outstanding community members who made January 2026 a record month — from our top-rated sellers to the most passionate collectors and highest bidders.",
128
- content: `<h2>Top Sellers of January</h2><p><strong>FigureVault JP</strong> — 47 orders fulfilled at a 4.9-star average. Their Dragon Ball and Evangelion auction listings consistently sell above estimate, thanks to meticulous authentication and same-day shipping.</p><p><strong>AnimeCraft Apparel</strong> — Specialising in licensed cosplay, they earned the 'Verified Otaku Seller' badge in January with a zero-dispute month. Their Charizard PSA-9 lot received 28 bids before close.</p><p><strong>OtakuShelf Co</strong> — January's hidden gem. Their Spirited Away production cel auction attracted 19 unique bidders and set a new platform record for production art.</p><h2>Top Bidders</h2><p><strong>Raj Patel</strong> — 6 winning bids in January alone. Raj is building an extraordinary Gundam collection and his attention to build quality details in bid notes helps sellers trust him.</p><p><strong>Vikram Nair</strong> — Won the Charizard 1st-Edition PSA-9 lot in our inaugural TCG auction. His detailed review of the item helped 31 community members understand graded card authentication.</p><h2>Growing Community</h2><p>412 new collectors joined LetItRip in January — a 34% month-on-month increase. The anime collectibles niche is the fastest-growing category on the platform. Welcome to every new member!</p>`,
129
- coverImage: "https://picsum.photos/seed/community-spotlight-jan2026/1200/630",
130
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.COMMUNITY,
131
- tags: ["community", "spotlight", "collectors", "bidders", "january-2026"],
124
+ tags: [
125
+ "condition",
126
+ "grading",
127
+ "mint",
128
+ "near-mint",
129
+ "played",
130
+ "guide",
131
+ "buying",
132
+ ],
132
133
  isFeatured: false,
133
134
  status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
134
135
  publishedAt: daysAgo(27),
135
136
  authorId: "user-admin-user-admin",
136
137
  authorName: "Admin User",
137
- readTimeMinutes: 5,
138
- views: 987,
139
- metaTitle: "Community Spotlight January 2026Top Collectors | LetItRip",
140
- metaDescription: "Celebrating LetItRip's top sellers, bidders, and collectors from January 2026 and welcoming hundreds of new anime enthusiasts to the platform.",
138
+ readTimeMinutes: 7,
139
+ views: 3847,
140
+ metaTitle: "Pokemon Card Conditions ExplainedMint, NM, LP Guide | LetItRip",
141
+ metaDescription: "Master Pokemon card condition grading from Gem Mint to Heavily Played. Learn to assess, buy, and describe conditions accurately to avoid disputes.",
141
142
  createdAt: daysAgo(29),
142
143
  updatedAt: daysAgo(27),
143
144
  },
144
- // -- Published — March Auction Spotlight ------------------------------
145
+ // -- Published — Auction Spotlight ----------------------------------------
145
146
  {
146
- id: "blog-march-2026-auction-spotlight-news",
147
- title: "March Auction Spotlight: Rare Figures, TCG Cards & Production Art",
148
- slug: "march-2026-auction-spotlight-anime-collectibles",
149
- excerpt: "From a PSA-9 Charizard to a Good Smile Company Rem Wedding figure March 2026 brings our biggest and most diverse anime auction lineup yet. Everything live right now.",
150
- content: `<h2>Why March 2026 Is Special</h2><p>March marks the most diverse auction month in LetItRip's history. We have 10 active auctions spanning scale figures, Gunpla, TCG, and original production art with competitive opening bids and items that simply can't be found at retail.</p><h2>Scale Figures One for Every Fan</h2><p><strong>Chainsaw Man Makima 1/7 Kotobukiya ARTFX J</strong> 3 active bids, closing March 10. This soldout figure retails for ₹18,000 online when you can find one.</p><p><strong>Jujutsu Kaisen Sukuna 1/6 MegaHouse</strong> closing March 12 with competitive bidding from Gunpla collectors eyeing their shelf space wisely.</p><p><strong>Fate/Stay Night Saber Alter Wedding 1/7</strong> closing March 13. A Wonder Festival exclusive rarely seen outside Japan dealers.</p><p><strong>Re:Zero Rem Wedding 1/7 — Good Smile Company</strong> — closing March 15. GSC's best Rem figure, bar none.</p><h2>TCG & Trading Cards</h2><p><strong>Pokémon 1st Edition Base Set Charizard Holo PSA 9</strong> closing March 14. Already 2 active bids above30,000. This is the holy grail of Pokémon TCG.</p><h2>Production Art & Artbooks</h2><p><strong>Spirited Away 2001 Original Production Cel</strong> a Studio Ghibli hand-inked cel from the film's production, with gallery COA. Closing March 14.</p><p><strong>One Piece 25th Anniversary Artbook Signed by Eiichiro Oda</strong> 2 bids already, closing March 16. Authenticated by publisher Shueisha.</p><h2>Gunpla Corner</h2><p><strong>PG Wing Zero Custom Full Build & Paint</strong> FigureVault JP's custom-built Perfect Grade kit, closing March 15. A gallery-quality display piece.</p><h2>How to Bid</h2><p>Visit the <a href="/auctions">Auctions page</a>, sign in, and place your bid. You'll be notified instantly by app push notification if you're outbid.</p>`,
151
- coverImage: "https://picsum.photos/seed/march2026-auction-anime/1200/630",
147
+ id: "blog-may-2026-pokemon-auction-spotlight-news",
148
+ title: "May 2026 Auction Spotlight: 1st Edition Charizard, PSA 9 Mewtwo & Sealed Booster Packs",
149
+ slug: "may-2026-pokemon-tcg-auction-spotlight",
150
+ excerpt: "May brings our biggest Pokemon TCG auction lineup yet — a 1st Edition Charizard PSA 7, a Mewtwo PSA 9, a sealed Booster Pack, and the iconic Zap! Theme Deck. All live now on LetItRip.",
151
+ content: `<h2>Why May 2026 Is a Landmark Auction Month</h2><p>We have assembled the most significant collection of authenticated Base Set Pokemon cards and sealed product ever listed on LetItRip in a single month. Two active auctions, multiple buy-now listings, and three verified sellers this is the month that defines our Pokemon TCG marketplace.</p><h2>The Crown Jewel: 1st Edition Charizard PSA 7</h2><p>Our flagship listing. Blaine's Fire Shoppe has consigned a 1st Edition Base Set Charizard in a PSA 7 slab an authenticated, tamper-evident grade with clear provenance. Opening bid: ₹2,99,999. Reserve: ₹3,50,000. Buy-Now: ₹6,99,999. This card has already attracted 11 active bids Professor Oak, Gary Oak, and Ash Ketchum are in a three-way battle with days remaining.</p><h2>Mewtwo PSA 9 Auction</h2><p>Surge's Electric Emporium presents a PSA 9 Mewtwo from the original Base Set one of the finest Psychic-type collectibles in TCG history. Opening bid: ₹49,999. Currently at64,999 with Gary Oak leading. The auction closes in 5 days.</p><h2>Sealed Product Available Now</h2><p>For collectors who prefer the anticipation of a pack opening, Blaine's Fire Shoppe has 10 factory-sealed Base Set Booster Packs (₹12,999 each) and 3 sealed Zap! Theme Decks (₹18,999 each)both verified WOTC era sealed product.</p><h2>How to Participate</h2><p>Visit the <a href="/auctions">Auctions page</a>, sign in, and place your bid. You will receive an instant notification if you are outbid. All winning lots are shipped in insured courier with tracking within 3 business days of payment confirmation.</p>`,
152
+ coverImage: "https://images.pokemontcg.io/base1/4_hires.png",
152
153
  category: BLOG_POST_FIELDS.CATEGORY_VALUES.NEWS,
153
154
  tags: [
154
155
  "auctions",
155
- "march-2026",
156
- "figures",
157
- "tcg",
158
- "production-art",
156
+ "may-2026",
157
+ "charizard",
158
+ "mewtwo",
159
+ "base-set",
159
160
  "spotlight",
160
161
  ],
161
162
  isFeatured: true,
162
163
  status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
163
164
  publishedAt: daysAgo(8),
164
165
  authorId: "user-moderator-mod-user",
165
- authorName: "Riya Sharma",
166
+ authorName: "Moderator",
166
167
  readTimeMinutes: 5,
167
- views: 2104,
168
- metaTitle: "March 2026 Auction Spotlight — Anime Figures & TCG Live Now | LetItRip",
169
- metaDescription: "Explore LetItRip's biggest anime auction month: rare figures, PSA-graded Pokémon cards, Ghibli production art, and more. Bid now.",
168
+ views: 2891,
169
+ metaTitle: "May 2026 Pokemon TCG Auction Spotlight — Charizard & Mewtwo Live | LetItRip",
170
+ metaDescription: "LetItRip's May 2026 Pokemon TCG auctions are live — 1st Edition Charizard PSA 7, Mewtwo PSA 9, sealed packs and theme decks. Bid now.",
170
171
  createdAt: daysAgo(9),
171
172
  updatedAt: daysAgo(8),
172
173
  },
173
- // -- Draft -------------------------------------------------------------
174
+ // -- Updated policy post ---------------------------------------------------
175
+ {
176
+ id: "blog-pokemon-tcg-buyer-seller-protection-2026-updates",
177
+ title: "Updated Buyer & Seller Protection Policies for Pokemon TCG Cards",
178
+ slug: "updated-buyer-seller-protection-pokemon-tcg-2026",
179
+ excerpt: "We have strengthened our protection policies for Pokemon card transactions — here is a clear breakdown of what changed for raw singles, graded slabs, and sealed products.",
180
+ content: `<h2>Key Changes Effective 1 March 2026</h2><p><strong>Buyers:</strong> The return window for sealed product is extended from 7 to 14 days. For raw singles, the window remains 7 days with a condition-based partial refund option if items arrive in materially worse condition than described.</p><p><strong>Authentication Guarantee:</strong> All PSA/BGS-graded slabs auctioned on LetItRip are verified against official grading service databases before going live. If a certification number does not verify, the listing is removed immediately and any deposits refunded.</p><p><strong>Sellers:</strong> A dispute resolution SLA ensures all buyer claims are reviewed within 48 hours. Sellers maintaining a dispute rate below 0.5% automatically earn a 'Verified Pokemon Seller' badge on their store profile.</p><h2>Graded Card Shipping Policy</h2><p>All PSA/BGS-graded cards must ship in rigid team bags inside a padded mailer with at least 2 cm of bubble wrap around the slab. Damage in transit to a graded slab is covered by our ₹10,000 Shipping Protection at no extra cost on verified listings.</p><h2>Raw Card Condition Dispute Process</h2><p>If you receive a raw card in a condition materially below what was described and photographed, open a dispute within 7 days via your order page. Include close-up photos of the condition discrepancy. Resolution is typically within 24–48 hours.</p><h2>Why We Made These Changes</h2><p>Over 1,800 survey responses from the LetItRip Pokemon TCG community guided these updates. Faster dispute resolution and stronger graded card authentication topped the wishlist — and we delivered.</p>`,
181
+ coverImage: "https://images.pokemontcg.io/base1/88_hires.png",
182
+ category: BLOG_POST_FIELDS.CATEGORY_VALUES.UPDATES,
183
+ tags: [
184
+ "policy",
185
+ "protection",
186
+ "returns",
187
+ "authentication",
188
+ "graded-cards",
189
+ ],
190
+ isFeatured: false,
191
+ status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
192
+ publishedAt: daysAgo(36),
193
+ authorId: "user-admin-user-admin",
194
+ authorName: "Admin User",
195
+ readTimeMinutes: 5,
196
+ views: 2103,
197
+ metaTitle: "Updated Pokemon TCG Protection Policies Mar 2026 | LetItRip",
198
+ metaDescription: "LetItRip updates buyer and seller protection for Pokemon TCG cards — authentication guarantees, extended returns, and a Verified Pokemon Seller programme.",
199
+ createdAt: daysAgo(38),
200
+ updatedAt: daysAgo(36),
201
+ },
202
+ // -- Community Spotlight --------------------------------------------------
203
+ {
204
+ id: "blog-community-spotlight-april-2026-community",
205
+ title: "Community Spotlight: April 2026 Top Pokemon Collectors & Bidders",
206
+ slug: "community-spotlight-april-2026-pokemon-collectors",
207
+ excerpt: "Meet the outstanding community members who made April 2026 a record month — top-rated Pokemon card sellers, highest bidders, and our most reviewed listings.",
208
+ content: `<h2>Top Sellers of April</h2><p><strong>Blaine's Fire Shoppe</strong> — 42 orders fulfilled at a 4.9-star average. Blaine's 1st Edition Charizard auction set a new LetItRip record for most bids on a single lot. His authentication photography standards are now used as a reference for all new sellers.</p><p><strong>Surge's Electric Emporium</strong> — Specialising in Electric-type Base Set singles and sealed Zap! decks, Surge earned the 'Verified Pokemon Seller' badge in April with zero disputes. Their Mewtwo PSA 9 auction attracted 6 bidders and strong community commentary.</p><p><strong>Misty's Water Cards</strong> — April's discovery store. Their Blastoise Holo Near Mint listing sold out within 48 hours and their Water Energy x10 lot became our best-selling energy card of the month.</p><h2>Top Bidders</h2><p><strong>Professor Oak</strong> — Currently leading the 1st Edition Charizard auction with an auto-bid of ₹5,00,000. Professor Oak has won 10 auctions this year and his condition review posts have helped hundreds of community members learn grading fundamentals.</p><p><strong>Gary Oak</strong> — Won the Mewtwo PSA 9 auction and is bidding competitively on the Charizard. Gary's detailed condition notes and punctual payment processing make him one of our highest-trust buyers.</p><h2>Growing Community</h2><p>380 new Pokemon card collectors joined LetItRip in April — a 28% month-on-month increase. The Base Set vintage segment is now the fastest-growing category on the platform. Welcome to every new trainer!</p>`,
209
+ coverImage: "https://images.pokemontcg.io/base1/58_hires.png",
210
+ category: BLOG_POST_FIELDS.CATEGORY_VALUES.COMMUNITY,
211
+ tags: [
212
+ "community",
213
+ "spotlight",
214
+ "collectors",
215
+ "bidders",
216
+ "april-2026",
217
+ ],
218
+ isFeatured: false,
219
+ status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
220
+ publishedAt: daysAgo(3),
221
+ authorId: "user-admin-user-admin",
222
+ authorName: "Admin User",
223
+ readTimeMinutes: 5,
224
+ views: 1124,
225
+ metaTitle: "Community Spotlight April 2026 — Top Pokemon Collectors | LetItRip",
226
+ metaDescription: "Celebrating LetItRip's top Pokemon TCG sellers, bidders, and collectors from April 2026 and welcoming hundreds of new trainers to the platform.",
227
+ createdAt: daysAgo(5),
228
+ updatedAt: daysAgo(3),
229
+ },
230
+ // -- Draft ----------------------------------------------------------------
174
231
  {
175
- id: "blog-guide-authenticating-anime-merchandise-draft",
176
- title: "The Complete Guide to Authenticating Anime Merchandise",
177
- slug: "complete-guide-authenticating-anime-merchandise-2026",
178
- excerpt: "With bootleg figures and fake TCG cards flooding the secondary market, authentication is a must-have skill for any serious collector. This guide covers how to spot fakes for figures, Nendoroids, Gunpla, and graded cards.",
179
- content: `<h2>Why Authentication Matters</h2><p>The anime collectibles market loses an estimated ₹20 crore annually to counterfeit goods. Bootleg figures look convincing at thumbnail resolution this guide gives you the tools to tell the difference before bidding.</p><h2>Scale Figures: What to Check</h2><ul><li><strong>Box Print Quality:</strong> Official releases have crisp, high-contrast printing. Bootlegs show banding, colour shift, and blurred kanji.</li><li><strong>Seam Lines:</strong> Authentic figures have nearly invisible seam lines. Bootlegs show gaps and misalignment of 1–3 mm.</li><li><strong>Paint Applications:</strong> Check the eyes under a macro lens official eye decals are perfectly centered; bootlegs are usually off by 0.5–1 mm on at least one axis.</li><li><strong>Weight:</strong> Authentic figures use denser PVC. Bootlegs are noticeably lighter and feel hollow.</li></ul><h2>Nendoroid Specifics</h2><p>[DraftNendoroid section in progress]</p><h2>Graded TCG Cards</h2><p>PSA and BGS holders can be verified at psacard.com using the certification number on the label. Any holder not verifiable online is counterfeit.</p><h2>Gunpla: Official vs. Knockoff</h2><p>[Draft — Gunpla section in progress]</p>`,
232
+ id: "blog-guide-spotting-fake-pokemon-cards-draft",
233
+ title: "The Complete Guide to Spotting Counterfeit Pokemon Cards",
234
+ slug: "complete-guide-spotting-fake-counterfeit-pokemon-cards-2026",
235
+ excerpt: "With convincing bootleg Base Set cards flooding online marketplaces, authentication is a must-have skill for any serious Pokemon TCG collector. This guide covers the definitive physical tests for spotting fakes.",
236
+ content: `<h2>Why Counterfeits Are a Growing Problem</h2><p>The explosion of Pokemon card values has made counterfeiting economically viable. Modern printing technology allows bootleggers to produce cards that look convincing at thumbnail resolution. This guide gives you the physical and optical tests to detect fakes before you pay.</p><h2>The Light Test</h2><p>Hold the card up to a bright light source. Authentic Base Set cards have a distinct layered construction you should see a dark inner layer (the black core) sandwiched between the front and back printing layers. Counterfeit cards often show uniform light transmission without a black core, or the core is unevenly distributed.</p><h2>The Bend Test (Non-Destructive)</h2><p>[Draft section in progress]</p><h2>Holo Pattern Examination</h2><p>Under a magnifying loupe, authentic Base Set holo foil has a specific starburst/diamond pattern. Counterfeit holo patterns are typically coarser you'll see larger, less intricate grid or dot patterns when magnified.</p><h2>Weight and Feel</h2><p>Authentic WOTC-era cards have a specific tactile quality a slight firmness and weight that counterfeit cards rarely replicate. A precision digital scale shows authentic Base Set cards weigh approximately 1.78 g. Most counterfeits are measurably lighter or heavier.</p><h2>Verifying Graded Slabs</h2><p>PSA certification numbers can be verified at psacard.com. BGS numbers verify at beckett.com/grading. Any slab whose number does not verify is counterfeit.</p>`,
180
237
  category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
181
238
  tags: [
182
239
  "authentication",
183
- "figures",
184
- "tcg",
185
- "gunpla",
240
+ "fake",
241
+ "counterfeit",
242
+ "base-set",
186
243
  "guide",
187
244
  "anti-counterfeit",
188
245
  ],
@@ -190,29 +247,310 @@ export const blogPostsSeedData = [
190
247
  status: BLOG_POST_FIELDS.STATUS_VALUES.DRAFT,
191
248
  authorId: "user-admin-user-admin",
192
249
  authorName: "Admin User",
193
- readTimeMinutes: 12,
250
+ readTimeMinutes: 11,
194
251
  views: 0,
195
252
  createdAt: daysAgo(17),
196
253
  updatedAt: daysAgo(17),
197
254
  },
198
- // -- Archived ---------------------------------------------------------
255
+ // -- Archived -------------------------------------------------------------
199
256
  {
200
- id: "blog-anicon-2025-haul-recap-community-archived",
201
- title: "AniCon 2025 Haul Recap — Community Picks of the Year",
202
- slug: "anicon-2025-haul-recap-community",
203
- excerpt: "December's AniCon online event was our biggest ever — here's a look at the top picks, best-value lots, and the items the community loved most.",
257
+ id: "blog-pokemon-day-2026-recap-community-archived",
258
+ title: "Pokemon Day 2026 — Community Picks and Best Deals",
259
+ slug: "pokemon-day-2026-recap-community-picks",
260
+ excerpt: "Pokemon Day 2026 was our biggest promotional event ever. Here's a look at the top deals, best-value lots, and the cards our community loved most.",
204
261
  content: `<p>This post has been archived. For current deals and updates, visit our <a href="/blog">blog</a>.</p>`,
205
- coverImage: "https://picsum.photos/seed/anicon2025-recap/1200/630",
262
+ coverImage: "https://images.pokemontcg.io/base1/58_hires.png",
206
263
  category: BLOG_POST_FIELDS.CATEGORY_VALUES.COMMUNITY,
207
- tags: ["anicon", "december", "2025", "recap", "haul"],
264
+ tags: ["pokemon-day", "february", "2026", "recap", "deals"],
208
265
  isFeatured: false,
209
266
  status: BLOG_POST_FIELDS.STATUS_VALUES.ARCHIVED,
210
267
  publishedAt: daysAgo(71),
211
268
  authorId: "user-admin-user-admin",
212
269
  authorName: "Admin User",
213
270
  readTimeMinutes: 3,
214
- views: 5602,
271
+ views: 4821,
215
272
  createdAt: daysAgo(72),
216
273
  updatedAt: daysAgo(53),
217
274
  },
275
+ // -- Developer / API post with code blocks ---------------------------------
276
+ {
277
+ id: "blog-how-to-query-pokemon-tcg-api-card-prices-tips",
278
+ title: "How to Query the Pokemon TCG API for Real-Time Card Prices",
279
+ slug: "how-to-query-pokemon-tcg-api-card-prices",
280
+ excerpt: "The Pokemon TCG API is a free, open dataset of every card ever printed. This guide shows you how to query it with JavaScript, filter by set and rarity, and cross-reference prices with recent LetItRip auction results.",
281
+ content: `<h2>Why Use the Pokemon TCG API?</h2>
282
+ <p>The <a href="https://pokemontcg.io" rel="noopener noreferrer">Pokemon TCG API</a> provides structured data on every officially printed Pokemon card — set codes, rarity, artwork, legality, and market price snapshots from major resale platforms. Combined with live auction data from LetItRip, you can build surprisingly accurate price models for graded and raw singles.</p>
283
+
284
+ <h2>Getting Started — Fetch a Card by Set and Number</h2>
285
+ <p>You can query any card by its set ID and number. Here's how to fetch the Base Set Charizard (base1-4) using the <code>fetch</code> API:</p>
286
+
287
+ <pre><code class="language-javascript">const response = await fetch(
288
+ 'https://api.pokemontcg.io/v2/cards/base1-4',
289
+ { headers: { 'X-Api-Key': 'YOUR_API_KEY' } }
290
+ );
291
+ const { data } = await response.json();
292
+
293
+ console.log(data.name); // "Charizard"
294
+ console.log(data.set.name); // "Base"
295
+ console.log(data.rarity); // "Rare Holo"
296
+ console.log(data.tcgplayer?.prices?.holofoil?.market); // e.g. 450.00 (USD)
297
+ </code></pre>
298
+
299
+ <h2>Search All Holos in Base Set</h2>
300
+ <p>To list every holo rare in the original Base Set, use the <code>q</code> query parameter with <code>set.id:base1 rarity:"Rare Holo"</code>:</p>
301
+
302
+ <pre><code class="language-javascript">const params = new URLSearchParams({
303
+ q: 'set.id:base1 rarity:"Rare Holo"',
304
+ orderBy: '-tcgplayer.prices.holofoil.market',
305
+ pageSize: '20',
306
+ });
307
+
308
+ const res = await fetch(
309
+ \`https://api.pokemontcg.io/v2/cards?\${params}\`,
310
+ { headers: { 'X-Api-Key': 'YOUR_API_KEY' } }
311
+ );
312
+ const { data, totalCount } = await res.json();
313
+
314
+ data.forEach(card => {
315
+ const price = card.tcgplayer?.prices?.holofoil?.market ?? 'N/A';
316
+ console.log(\`\${card.name} #\${card.number} — $\${price}\`);
317
+ });
318
+ // Charizard #4 — $450.00
319
+ // Mewtwo #10 — $120.00
320
+ // Blastoise #2 — $95.00
321
+ // ...
322
+ </code></pre>
323
+
324
+ <h2>Cross-Referencing With LetItRip Auction History</h2>
325
+ <p>Indian market prices differ from USD TCGPlayer values due to import costs, grading premiums, and local collector demand. To get a LetItRip-accurate estimate, compare the TCG API price with recent sold lots via our public auction feed:</p>
326
+
327
+ <pre><code class="language-javascript">// Example: fetch last 10 sold auctions for Charizard on LetItRip
328
+ const lirRes = await fetch('/api/auctions?q=charizard&status=ended&pageSize=10');
329
+ const { data: auctionLots } = await lirRes.json();
330
+
331
+ const avgINR = auctionLots.reduce((sum, lot) => sum + lot.currentBid, 0)
332
+ / auctionLots.length;
333
+
334
+ console.log(\`Average LetItRip sold price: ₹\${avgINR.toLocaleString('en-IN')}\`);
335
+ </code></pre>
336
+
337
+ <h2>Building a Price Alert</h2>
338
+ <p>You can combine both APIs into a simple price-alert script. Run it on a cron job and notify yourself when a card crosses a target price:</p>
339
+
340
+ <pre><code class="language-javascript">async function checkPriceAlert({ cardId, targetUSD }) {
341
+ const res = await fetch(
342
+ \`https://api.pokemontcg.io/v2/cards/\${cardId}\`,
343
+ { headers: { 'X-Api-Key': process.env.POKEMON_API_KEY } }
344
+ );
345
+ const { data } = await res.json();
346
+ const market = data.tcgplayer?.prices?.holofoil?.market;
347
+
348
+ if (market && market >= targetUSD) {
349
+ console.log(
350
+ \`ALERT: \${data.name} is now $\${market} (target: $\${targetUSD})\`
351
+ );
352
+ // → send yourself a notification via email, Slack, etc.
353
+ }
354
+ }
355
+
356
+ // Example usage
357
+ checkPriceAlert({ cardId: 'base1-4', targetUSD: 500 });
358
+ </code></pre>
359
+
360
+ <h2>Rate Limits and Best Practices</h2>
361
+ <ul>
362
+ <li>The free Pokemon TCG API tier allows 1,000 requests/day. Register for a free API key to unlock 20,000 requests/day.</li>
363
+ <li>Cache responses locally — card data changes infrequently; only price snapshots need frequent polling.</li>
364
+ <li>Combine with Firestore or a local SQLite database to persist historical price data for trend analysis.</li>
365
+ <li>Remember that TCGPlayer prices are USD-denominated; apply an exchange rate and import premium (typically 15–25%) for INR estimates.</li>
366
+ </ul>
367
+
368
+ <h2>Next Steps</h2>
369
+ <p>The Pokemon TCG API documentation covers advanced queries including artist name search, legality filters, and set release date ordering. For live Indian market prices, LetItRip's own auction feed is the most accurate source — use both together for the most complete picture.</p>`,
370
+ coverImage: "https://images.pokemontcg.io/base1/10_hires.png",
371
+ category: BLOG_POST_FIELDS.CATEGORY_VALUES.TIPS,
372
+ tags: [
373
+ "api",
374
+ "developer",
375
+ "price-guide",
376
+ "javascript",
377
+ "tutorial",
378
+ "tools",
379
+ ],
380
+ isFeatured: false,
381
+ status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
382
+ publishedAt: daysAgo(12),
383
+ authorId: "user-admin-user-admin",
384
+ authorName: "Admin User",
385
+ readTimeMinutes: 8,
386
+ views: 1847,
387
+ metaTitle: "How to Query the Pokemon TCG API for Real-Time Card Prices | LetItRip",
388
+ metaDescription: "Step-by-step guide to using the Pokemon TCG API with JavaScript — fetch cards by set, filter holos, and cross-reference prices with LetItRip auction data.",
389
+ createdAt: daysAgo(14),
390
+ updatedAt: daysAgo(12),
391
+ },
392
+ // -- Multi-franchise posts with YouTube embeds ----------------------------
393
+ {
394
+ id: "blog-hot-wheels-treasure-hunt-hunting-guide-2026",
395
+ title: "The Complete Guide to Hunting Hot Wheels Treasure Hunts in 2026",
396
+ slug: "hot-wheels-treasure-hunt-hunting-guide-2026",
397
+ excerpt: "Treasure Hunts (TH) and Super Treasure Hunts (STH) are the most sought-after Hot Wheels cars. This guide covers everything — how to spot them, when to hunt, and how to build a collection without overspending.",
398
+ content: `<h2>What Makes a Treasure Hunt Special?</h2>
399
+ <p>A <strong>Treasure Hunt</strong> is a limited-edition Hot Wheels car hidden within standard mainline assortments. Two variants exist:</p>
400
+ <ul>
401
+ <li><strong>Regular TH (Treasure Hunt)</strong> — Features the flame TH logo on the card, metallic paint, and typically collector-grade details. Found in standard pegs.</li>
402
+ <li><strong>Super Treasure Hunt (STH)</strong> — The ultimate find: spectraflame metallic finish, <em>real rider rubber tires</em>, and premium casting details. Extremely rare — roughly 1 per 2–3 cases.</li>
403
+ </ul>
404
+ <h2>How to Identify a Treasure Hunt at Retail</h2>
405
+ <p>To spot a TH on the peg:</p>
406
+ <ol>
407
+ <li>Look for the <strong>green flame logo</strong> printed on the card's upper left corner</li>
408
+ <li>Check for a hidden 'TH' mark on the car body (often in the window, roof, or underside)</li>
409
+ <li>For STHs — the real rubber tires are visually distinct from the plastic tires on standard cars</li>
410
+ <li>Spectraflame paint catches light differently than standard factory paint</li>
411
+ </ol>
412
+ <blockquote><p>"The best time to hunt is Tuesday–Thursday when most stores receive weekly shipments. Be there when the cases are opened."</p></blockquote>
413
+ <h2>Watch: Super Treasure Hunt Unboxing (Real Riders)</h2>
414
+ <p>This video covers a live STH unboxing from a freshly opened case — showing exactly what separates a Super TH from a regular TH and what to look for on the card:</p>
415
+ <div class="relative aspect-video w-full overflow-hidden rounded-lg my-4">
416
+ <iframe class="absolute inset-0 h-full w-full" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allowfullscreen allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" title="Hot Wheels Super Treasure Hunt Guide" loading="lazy"></iframe>
417
+ </div>
418
+ <h2>Where to Buy Treasure Hunts Online (If You Can't Hunt Retail)</h2>
419
+ <p>If hunting retail isn't an option, LetItRip has a curated selection of Treasure Hunts from verified collectors including <strong>Speed King Diecast</strong> (Mumbai) who stocks premium STHs. Expect to pay a 3–5× premium over MRP for STHs and 1.5–2× for regular THs — this is standard market pricing.</p>
420
+ <h2>Investment Perspective: Do TH Cars Appreciate?</h2>
421
+ <p>Super Treasure Hunts have historically appreciated 15–25% year-over-year for popular castings (e.g., Supra, Golf GTI, Lamborghini Countach). Condition matters enormously — keep on card in an acrylic protector. Regular THs rarely exceed 3× MRP in value unless they feature a highly sought casting.</p>
422
+ <h2>Tips for Building a TH Collection on a Budget</h2>
423
+ <ul>
424
+ <li>Focus on <strong>one or two theme series</strong> rather than collecting all THs</li>
425
+ <li>Buy from trusted LetItRip sellers who include photos of all four sides</li>
426
+ <li>Check for card creases — the card condition affects resale value as much as the car itself</li>
427
+ <li>Join the LetItRip Hot Wheels community group for hunting reports and tips</li>
428
+ </ul>`,
429
+ coverImage: "https://picsum.photos/seed/hw-treasure-hunt-blog/1200/630",
430
+ category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
431
+ tags: ["hot-wheels", "treasure-hunt", "sth", "hunting-guide", "collecting", "investment"],
432
+ isFeatured: true,
433
+ status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
434
+ publishedAt: daysAgo(8),
435
+ authorId: "user-admin-user-admin",
436
+ authorName: "Admin User",
437
+ readTimeMinutes: 8,
438
+ views: 2340,
439
+ metaTitle: "Hot Wheels Treasure Hunt Hunting Guide 2026 | LetItRip Blog",
440
+ metaDescription: "How to find Hot Wheels Treasure Hunts and Super THs at retail — identification tips, best hunting times, and investment perspective.",
441
+ createdAt: daysAgo(10),
442
+ updatedAt: daysAgo(8),
443
+ },
444
+ {
445
+ id: "blog-beyblade-burst-beginners-complete-guide-2026",
446
+ title: "Beyblade Burst: The Complete Beginner's Guide (2026 Edition)",
447
+ slug: "beyblade-burst-beginners-guide-2026",
448
+ excerpt: "New to Beyblade Burst? This guide covers the four types, how to choose your first top, launcher basics, and the best beginner-friendly sets available on LetItRip.",
449
+ content: `<h2>What Is Beyblade Burst?</h2>
450
+ <p>Beyblade Burst is a spinning-top combat game published by Takara Tomy (Japan) and Hasbro (international). Two players launch customisable tops into a stadium — the winner is the top still spinning after its opponent is knocked out, rings out, or <em>bursts</em> (separates into pieces).</p>
451
+ <p>The <strong>Burst mechanic</strong> is what sets this generation apart from classic Beyblade: a defeated top's energy layer can detach mid-battle, awarding 2 points to the attacker (vs. 1 for a standard knockdown).</p>
452
+ <h2>The Four Types at a Glance</h2>
453
+ <table>
454
+ <thead><tr><th>Type</th><th>Goal</th><th>Best For</th></tr></thead>
455
+ <tbody>
456
+ <tr><td><strong>Attack</strong></td><td>Knock out opponent</td><td>Aggressive players</td></tr>
457
+ <tr><td><strong>Defense</strong></td><td>Absorb hits, stay spinning</td><td>Patient players</td></tr>
458
+ <tr><td><strong>Stamina</strong></td><td>Outlast opponent</td><td>Strategic players</td></tr>
459
+ <tr><td><strong>Balance</strong></td><td>Mixed attributes</td><td>Versatile build</td></tr>
460
+ </tbody>
461
+ </table>
462
+ <h2>Watch: Beyblade Burst Battle — Attack vs Stamina</h2>
463
+ <p>See the dramatic difference between an Attack type and a Stamina type in a real match. Pay attention to how the Attack type's burst risk plays out:</p>
464
+ <div class="relative aspect-video w-full overflow-hidden rounded-lg my-4">
465
+ <iframe class="absolute inset-0 h-full w-full" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allowfullscreen allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" title="Beyblade Burst Battle Demo" loading="lazy"></iframe>
466
+ </div>
467
+ <h2>Choosing Your First Beyblade</h2>
468
+ <p>For beginners, we recommend starting with a <strong>Balance type</strong> (like Spriggan or Cho-Z Valkyrie) — they're forgiving, versatile, and competitive across different match-ups. Avoid pure Stamina types as your first top since they can feel passive for new players.</p>
469
+ <h2>Launcher Guide for Beginners</h2>
470
+ <p>The launcher is as important as the Beyblade itself. For beginners:</p>
471
+ <ul>
472
+ <li><strong>Grip String Launcher</strong> — pull cord mechanism, comfortable for kids and adults</li>
473
+ <li><strong>Light Launcher</strong> — compact, good for beginners, included in most starter packs</li>
474
+ <li>Always match <strong>spin direction</strong>: check if your top is R (right), L (left), or LR (both)</li>
475
+ </ul>
476
+ <h2>Recommended Starter Sets on LetItRip</h2>
477
+ <p>Available from <strong>Bladers Paradise</strong> (Bangalore) on LetItRip:</p>
478
+ <ul>
479
+ <li>Beyblade Burst QuadDrive Starter Sets (₹1,499–₹2,499)</li>
480
+ <li>Bladers Paradise Beginner Bundle: 2 tops + stadium + launcher (₹3,999)</li>
481
+ <li>Random Booster (Level 6 or higher) for variety builds (₹599–₹899)</li>
482
+ </ul>
483
+ <blockquote><p>"The best part of Beyblade Burst is customisation. Once you've got two or three tops, start swapping parts to build your own custom combination."</p></blockquote>`,
484
+ coverImage: "https://picsum.photos/seed/beyblade-beginners-blog/1200/630",
485
+ category: BLOG_POST_FIELDS.CATEGORY_VALUES.TIPS,
486
+ tags: ["beyblade", "burst", "beginners-guide", "types", "launcher", "starter"],
487
+ isFeatured: false,
488
+ status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
489
+ publishedAt: daysAgo(5),
490
+ authorId: "user-admin-user-admin",
491
+ authorName: "Admin User",
492
+ readTimeMinutes: 7,
493
+ views: 1680,
494
+ metaTitle: "Beyblade Burst Complete Beginner's Guide 2026 | LetItRip",
495
+ metaDescription: "New to Beyblade Burst? Learn types, launcher basics, and which starter set to buy in this complete 2026 beginner's guide.",
496
+ createdAt: daysAgo(7),
497
+ updatedAt: daysAgo(5),
498
+ },
499
+ {
500
+ id: "blog-transformers-g1-vs-modern-collecting-guide-2026",
501
+ title: "Collecting Transformers: G1 Vintage vs Modern Lines — Which is Right for You?",
502
+ slug: "transformers-g1-vs-modern-collecting-guide",
503
+ excerpt: "Should you chase vintage G1 Transformers or focus on modern lines like Legacy, Studio Series, and Masterpiece? We break down the pros, cons, costs, and where to start.",
504
+ content: `<h2>The Case for G1 Vintage Transformers</h2>
505
+ <p>Generation 1 Transformers (1984–1990) are the original toys that started it all. Characters like Optimus Prime, Megatron, and Bumblebee in their original diecast and chrome-laden glory are irreplaceable artifacts of toy history.</p>
506
+ <p><strong>Why collect G1:</strong></p>
507
+ <ul>
508
+ <li>Historical significance — these are the originals, not remakes</li>
509
+ <li>Diecast metal construction on larger figures (Megatron, Soundwave)</li>
510
+ <li>Chrome and rubber tires that modern figures replicate but can't match in feel</li>
511
+ <li>MISB (Mint in Sealed Box) G1 figures have appreciated dramatically — 200–400% in the last decade</li>
512
+ </ul>
513
+ <p><strong>The challenges:</strong></p>
514
+ <ul>
515
+ <li>Rubber parts yellow and crack over time (known as 'yellowing')</li>
516
+ <li>Joints loosen with age — transformation can be difficult on loose figures</li>
517
+ <li>Authentic condition MISB figures command premium prices (₹30,000–₹3,00,000+ for iconic characters)</li>
518
+ </ul>
519
+ <h2>The Case for Modern Lines</h2>
520
+ <p>Modern Transformers lines like <strong>Studio Series</strong>, <strong>Legacy</strong>, and <strong>Masterpiece</strong> offer engineering that would have been impossible in the '80s — ultra-accurate transformations, screen-accurate proportions, and premium materials.</p>
521
+ <blockquote><p>"Studio Series Optimus Prime achieves film-accurate detail that would have taken 1,000 parts to replicate in the G1 era — all in a figure that fits on a standard shelf."</p></blockquote>
522
+ <h2>Watch: G1 Optimus Prime vs Studio Series Comparison</h2>
523
+ <p>This side-by-side video review compares the 1984 G1 Optimus Prime with the 2024 Studio Series Leader Class — transformation complexity, articulation, and display value:</p>
524
+ <div class="relative aspect-video w-full overflow-hidden rounded-lg my-4">
525
+ <iframe class="absolute inset-0 h-full w-full" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allowfullscreen allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" title="G1 vs Studio Series Transformers Comparison" loading="lazy"></iframe>
526
+ </div>
527
+ <h2>Price Comparison: G1 vs Modern</h2>
528
+ <table>
529
+ <thead><tr><th>Figure</th><th>G1 Vintage (Loose)</th><th>G1 MISB</th><th>Modern Equivalent</th></tr></thead>
530
+ <tbody>
531
+ <tr><td>Optimus Prime</td><td>₹8,000–₹18,000</td><td>₹1,50,000+</td><td>₹4,999 (Studio Series)</td></tr>
532
+ <tr><td>Megatron (P38)</td><td>₹12,000–₹25,000</td><td>₹2,50,000+</td><td>₹6,499 (Legacy)</td></tr>
533
+ <tr><td>Soundwave + Cassettes</td><td>₹9,000–₹20,000</td><td>₹1,80,000+</td><td>₹4,999 (Kingdom)</td></tr>
534
+ </tbody>
535
+ </table>
536
+ <h2>Our Recommendation</h2>
537
+ <p>For new collectors on a budget: start with <strong>modern lines</strong>. Studio Series and Legacy deliver exceptional quality at accessible prices. Once you've built appreciation for the characters and lore, graduate to G1 hunting — starting with key characters in Complete-with-Instructions grade.</p>
538
+ <p>For investment: MISB G1 continues to outperform modern figures in value appreciation. A limited budget is best allocated to sealed G1 Autobots or Decepticons with full cardback condition.</p>
539
+ <h2>Shop on LetItRip</h2>
540
+ <p>Both G1 vintage and modern Transformers are available from <strong>Speed King Diecast</strong> on LetItRip. Check their store for current stock including the live auction of a <a href="/auctions">G1 Optimus Prime MISB</a> — current bids open now.</p>`,
541
+ coverImage: "https://picsum.photos/seed/transformers-g1-blog/1200/630",
542
+ category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
543
+ tags: ["transformers", "g1", "studio-series", "collecting", "investment", "masterpiece", "legacy"],
544
+ isFeatured: true,
545
+ status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
546
+ publishedAt: daysAgo(3),
547
+ authorId: "user-admin-user-admin",
548
+ authorName: "Admin User",
549
+ readTimeMinutes: 9,
550
+ views: 1420,
551
+ metaTitle: "Collecting Transformers: G1 vs Modern Lines Guide 2026 | LetItRip",
552
+ metaDescription: "G1 vintage Transformers vs modern Studio Series, Legacy, and Masterpiece — which is right for your collection and budget?",
553
+ createdAt: daysAgo(5),
554
+ updatedAt: daysAgo(3),
555
+ },
218
556
  ];