100 크레딧 무료, 카드 등록 없이지금 시작하기
Logo
100 크레딧 무료, 카드 등록 없이

Target Product API

API 한 번의 호출로 Target Product 데이터를 받아 가세요. Returns full product detail for a Target item: title, brand, description, highlight bullets, current and regular price, average rating with its 1-5 star distribution, written-review count, the full image gallery, colour and size variations, and stock status. Prices are national: Target's product endpoint reports the same price whatever store is asked for, so treat this as catalogue pricing rather than shelf pricing. For this product's written reviews call GET /v1/target/reviews with the same TCIN.

2026년 7월 업데이트SocialCrawl 팀이 직접 관리해요

46개 플랫폼을 한 번에 살펴봐요

·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
Target API

Product API로 무엇을 할 수 있을까요

Product 엔드포인트가 통합 스키마와 계산 필드를 담은 Target 데이터를 한 번의 요청으로 보내드려요. 스크래핑 인프라를 직접 만들거나 유지할 필요가 없어요.

요청 예시

curl -H "x-api-key: YOUR_API_KEY" \
  "https://www.socialcrawl.dev/v1/target/product?tcin=92148487"
import requests

response = requests.get(
    "https://www.socialcrawl.dev/v1/target/product",
    params={
    'tcin': '92148487',
    },
    headers={"x-api-key": "YOUR_API_KEY"},
)

data = response.json()
const response = await fetch(
  "https://www.socialcrawl.dev/v1/target/product?tcin=92148487",
  {
    headers: { "x-api-key": "YOUR_API_KEY" },
  },
);

const data = await response.json();

파라미터

파라미터필수설명
tcinTarget catalogue id (TCIN), the numeric id at the end of a target.com product URL: target.com/p/<name>/-/A-92148487 is TCIN 92148487. Target rolls a colour or size variant up to its parent product, so the id returned by GET /v1/target/product can differ from the one you sent; the id you asked for is preserved at product.ext.requested_id.
응답 예시

Target Product API는 무엇을 돌려주나요

모든 응답은 하나의 통합 스키마를 따라요. 크레딧을 쓰기 전에 어떤 필드가 돌아오는지, 실제 응답 본문 그대로 확인해 보세요.

응답 예시 보기
{
  "success": true,
  "platform": "target",
  "endpoint": "/v1/target/product",
  "data": {
    "product": {
      "id": "92148487",
      "url": "https://www.target.com/p/beats-solo-buds-true-wireless-bluetooth-earbuds/-/A-92148487",
      "title": "Beats Solo Buds True Wireless Bluetooth Earbuds",
      "description": "New<br />Beats Solo Buds<br />Looks tiny. Sounds huge.<br /><br />Featuring the tiniest case we’ve ever made, these mighty small wireless earbuds are jam-packed with incredibly big sound.<br />• Fully Custom Acoustic Architecture<br />• Ergonomic Design for a Natural Fit<br />• Up to 18 hours of Battery Life¹<br />• Compatible with both iOS and Android<br /><br />Sound<br />Designed for music first.<br />Every design decision focused on accurate music reproduction — from the drivers to the vents to the position of each intricate component inside. The result? Cleanly balanced tuning that gives you the full range and emotion of all your favorite music, as the artists intended.<br />Custom-built sound system.<br />Dual-layer drivers minimize micro-distortions to ensure high-fidelity sound with uncompromising clarity and warmth. Each fully custom driver is positioned parallel to the ear nozzle to deliver sound optimally to your ears.<br /><br />Size<br />Our smallest case. Ever.<br />Beats Solo Buds feature the tiniest case we’ve ever made, making these powerful earbuds the ultimate on-the-go companion.<br />All about airflow.<br />Each bud’s laser-cut vents are engineered to improve audio performance, especially for bass, while gently reducing air pressure for extra comfort.<br /><br />Comfort<br />Fit for any ear.<br />The earbuds’ ergonomic design features nozzles angled to match the natural shape of the ear canal. Beats Solos Buds come with four ear tip sizes — including our newest extra-small option — to help ensure ultimate comfort and passive noise isolation.<br /><br />Battery<br />Charge from your phone.²<br />Or tablet. Or wall outlet. When it’s time to recharge, seat your earbuds in the case while connected to a USB-C cable. A 5-minute Fast Fuel charge provides up to 1 hour of listening time³ when you need it quick.<br />Battery all day.<br />Beats Solo Buds are built for extended listening, featuring up to 18 hours of battery life¹ and a comfortable, ergonomic design.<br /><br />Compatibility<br />Works with iOS. And Android.<br />Native compatibility ensures seamless one-touch pairing, automatic pre-pairing across your devices, plus Find My or Find My Device⁴ — for everyone.<br /><br />Call Quality<br />Crystal-clear calls.<br />Each earbud is equipped with a custom-designed microphone powered by an advanced noise-learning algorithm to help deliver exceptional call quality. Enjoy extended range with fewer dropouts thanks to industry-leading Class 1 Bluetooth®.<br /><br />Controls<br />On-device controls.<br />Customizable on-ear functions allow you to control your music, take calls and activate your voice assistant by pressing the ‘b’ button. You can also configure the ‘b’ button in iOS settings or your Beats app to control your volume.<br /><br />In the Box:<br />Beats Solo Buds earphones<br />Carrying case<br />Ear tips with four size options<br />Warranty card<br />(Power adapter and USB-C charging cable sold separately)<br /><br />Legal<br />¹Testing conducted by Apple in April 2024 using preproduction Beats Solo Buds units and software paired with iPhone 15 Pro units and prerelease software. The playlist consisted of 358 unique audio tracks purchased from the iTunes Store (256-Kbps AAC encoding). Volume was set to 50%. Testing consisted of full Beats Solo Buds battery discharge while playing audio until the first unit of Beats Solo Buds stopped playback. Battery life depends on device settings, environment, usage, and many other factors.<br />²Requires iPhone 15 or supported Android devices.<br />³Testing conducted by Apple in April 2024 using preproduction Beats Solo Buds units and software paired with iPhone 15 Pro units and pre-release software. The playlist consisted of 358 unique audio tracks purchased from the iTunes Store (256-Kbps AAC encoding). Volume was set to 50%. 5-minute charge testing conducted with drained Beats Solo Buds that were charged for 5 minutes, then audio playback was started until the first Beats Solo Buds stopped playback. Battery life depends on device settings, environment, usage and many other factors.<br />⁴Requires an iCloud account and a compatible Apple device running the latest operating system software or a compatible Android device running the latest operating system software with Google Play Services enabled.",
      "seller": null,
      "brand": "Beats",
      "price": {
        "current": 69.99,
        "original": 79.99,
        "currency": "USD"
      },
      "rating": {
        "average": 3.41,
        "count": 1902
      },
      "image_urls": [
        "https://target.scene7.com/is/image/Target/GUEST_81453bad-a6fd-4637-a103-5e10ec03312c",
        "https://target.scene7.com/is/image/Target/GUEST_890621b7-d286-4b0e-9d4a-a6379f311e5d"
      ],
      "availability": "In stock",
      "reviews_count": 789,
      "features": [
        "Custom acoustic architecture for big Beats sound with full range and clarity.",
        "The smallest case we’ve ever made, making these powerful earbuds the perfect on-the-go companion."
      ],
      "variations": [
        {
          "id": "92146820",
          "title": "Arctic Purple",
          "url": "https://www.target.com/p/beats-solo-buds-true-wireless-bluetooth-earbuds-arctic-purple/-/A-92146820",
          "category": "Color"
        },
        {
          "id": "92146817",
          "title": "Matte Black",
          "url": "https://www.target.com/p/beats-solo-buds-true-wireless-bluetooth-earbuds-matte-black/-/A-92146817",
          "category": "Color"
        }
      ],
      "ext": {
        "rating_distribution": {
          "star_1": 549,
          "star_2": 149,
          "star_3": 124,
          "star_4": 148,
          "star_5": 932
        }
      }
    }
  },
  "credits_used": 5,
  "credits_remaining": 9999,
  "request_id": "req_example000000",
  "cached": false
}

통합 응답 구조를 보여 주는 실제 샘플이에요. 필드 값은 조회한 대상에 따라 달라져요.

API 상세

Target Product API는 어떻게 동작하나요

API 키와 함께 GET 요청을 보내면, 통합 스키마와 계산 필드를 담은 깔끔한 JSON이 돌아와요.

메서드

GET

응답 형식

JSON

왜 SocialCrawl인가요

Target Product 데이터는 왜 SocialCrawl로 가져올까요

Target 데이터 추출에서 까다로운 부분은 SocialCrawl이 가려 드려요. 통합 스키마, AI 인리치먼트, 그리고 코드에 남지 않는 플랫폼 로직까지.

개발자 우선

소셜 미디어 데이터를 몇 초 만에 수집하는 방법

개발자를 위한 가장 빠른 소셜 미디어 스크래핑 API. 월간 활성 사용자 100억 명 이상을 포괄하는 46개 플랫폼에서 프로필, 게시물, 댓글, 분석 데이터를 수집하세요.

모든 플랫폼을 하나의 스키마로

동일한 응답 구조로 46개 플랫폼을 조회하세요. 연동은 한 번이면 충분합니다.

단순 수집을 넘어 계산된 필드 제공

엔드포인트가 해당 지표를 지원하고 계산에 필요한 원본 값이 있을 때, 정규화된 레코드에 engagement_rate, estimated_reach, content_category, language를 함께 담아 바로 활용할 수 있습니다.

코드 한 줄 쓰기 전에, 데이터부터

Visual Data Explorer — URL만 붙여넣으면 결과 카드, 정형화된 테이블, CSV 내보내기 기능을 제공합니다.

import requests

response = requests.get(
    'https://www.socialcrawl.dev/v1/tiktok/profile',
    params={'handle': 'charlidamelio'},
    headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 46개 플랫폼
자주 묻는 질문

궁금한 점이 있으신가요? 답변해 드립니다

SocialCrawl의 API, 요금제, 기능에 대한 자주 묻는 질문을 확인하세요.

문의하기
TCIN이 뭐고 어디서 찾나요?
타겟의 상품 ID예요. 상품 URL 맨 뒤 숫자로, target.com/p/<상품명>/-/A-92148487 이면 TCIN은 92148487이에요. 이 엔드포인트에서 꼭 필요한 값은 이것 하나뿐이에요.
별점 분포도 함께 오나요?
네. ext.rating_distribution에 1점부터 5점까지 각각 몇 명인지 담겨 있고, 다 더하면 rating.count와 맞아요. 리뷰를 전부 넘겨보지 않고 한 번의 호출로 별점 분포를 파악할 수 있어요.
보낸 TCIN과 응답의 id가 다를 때가 있어요.
타겟이 색상·사이즈 옵션을 부모 상품으로 묶기 때문이에요. 옵션 TCIN을 보내면 부모 상품이 와요. id는 받은 데이터의 상품을 가리키고, 요청한 값은 ext.requested_id에 남아요. 각 옵션은 저마다의 TCIN과 함께 variations에 들어 있어요.
매장별이나 우편번호별 가격도 받을 수 있나요?
받을 수 없어요. 타겟 상품 API는 어느 매장을 지정해도 같은 가격을 주기 때문에, 되지도 않는 기능을 있는 것처럼 만들지 않았어요. 전국 기준 미국 달러 가격으로 보시면 돼요.
없는 TCIN을 요청하면 어떻게 되나요?
표준 오류 응답과 함께 404가 오고 크레딧은 자동으로 환불돼요. URL을 통째로 붙여넣은 것처럼 형식이 잘못된 값은 차감 자체가 일어나기 전에 400으로 먼저 걸러내요.

AI에게 SocialCrawl을 물어보세요

Target Product 데이터, 가져올 준비 되셨어요?

API 키 받고 60초 안에 Target 데이터를 받아 가세요.

무료로 시작하기

🤖 AI 에이전트나 LLM이신가요? 이 페이지를 markdown으로 읽어보세요