> ## Documentation Index
> Fetch the complete documentation index at: https://docs.copyfy.io/llms.txt
> Use this file to discover all available pages before exploring further.

# get_product

> Get the full details of one product from a store you track in Copyfy: description, variants, options, images, and the ads that promote it.

Returns the details of one product, with the same data and the same access rule as the product detail view in the dashboard.

**Cost:** 1 credit per successful call.

## Arguments

| Argument     | Type                      | Allowed values                                                                                                                                |
| ------------ | ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
| `product_id` | integer or numeric string | Copyfy product id, from [`search_products`](/tools/search-products) (`id`) or [`get_shop`](/tools/get-shop) (`best_products[].id`). Required. |

## Access rule

Product details are available for products of stores you track in Copyfy (or your own brand stores), as in the dashboard. For other stores, the call returns [`shop_not_tracked`](/errors#shop_not_tracked) with the `shop_id` and the `dashboard_url` where you can track the store. Refused calls are free. The MCP never uses your tracking slots on its own.

## Example

```json Tool call theme={null}
{
  "name": "get_product",
  "arguments": { "product_id": 48213377 }
}
```

```json Result (trimmed) theme={null}
{
  "id": 48213377,
  "title": "Self-Cleaning Slicker Brush",
  "url": "https://example-pet-store.com/products/self-cleaning-slicker-brush",
  "description": "Removes loose fur in seconds. Press the button to retract the pins and wipe the brush clean.",
  "vendor": "Example Pet Store",
  "product_type": "Grooming",
  "tags": ["dogs", "cats", "grooming"],
  "currency": "USD",
  "price_min": 24.99,
  "price_max": 29.99,
  "image_urls": ["https://cdn.shopify.com/s/files/1/example/brush.jpg"],
  "options": [{ "name": "Size", "values": ["Standard", "Large"] }],
  "variants_count": 2,
  "variants": [
    { "id": 44120001, "title": "Standard", "price": 24.99, "sku": "BRUSH-STD" },
    { "id": 44120002, "title": "Large", "price": 29.99, "sku": "BRUSH-LRG" }
  ],
  "published_at": "2026-03-02T09:14:00.000Z",
  "created_at": "2026-03-02T09:10:00.000Z",
  "shop": { "id": 902114, "domain": "example-pet-store.com" },
  "ads": [
    {
      "id": 5521907,
      "ad_archive_id": "1187340029915522",
      "headline": "Fur-free in one click",
      "media_type": "video",
      "landing_url": "https://example-pet-store.com/products/self-cleaning-slicker-brush",
      "started_at": "2026-07-14T00:00:00.000Z",
      "ended_at": null,
      "is_active": true,
      "ad_library_url": "https://www.facebook.com/ads/library/?id=1187340029915522"
    }
  ],
  "dashboard_url": "https://app.copyfy.io/dashboard/track/902114"
}
```

## Result fields

| Field                        | Type             | Description                                                                                                                                                          |
| ---------------------------- | ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`                         | integer          | Copyfy product id.                                                                                                                                                   |
| `title`                      | string           | Product title (third-party content).                                                                                                                                 |
| `url`                        | string or null   | Product page on the store.                                                                                                                                           |
| `description`                | string or null   | Product description as plain text, truncated to 1,000 characters (third-party content).                                                                              |
| `vendor`, `product_type`     | string or null   | Shopify catalog attributes.                                                                                                                                          |
| `tags`                       | array of strings | Up to 20 tags.                                                                                                                                                       |
| `currency`                   | string or null   | Store currency.                                                                                                                                                      |
| `price_min`, `price_max`     | number or null   | Lowest and highest variant price.                                                                                                                                    |
| `image_urls`                 | array of strings | Up to 5 product images.                                                                                                                                              |
| `options`                    | array            | Product options, such as size or color, with up to 20 values each.                                                                                                   |
| `variants_count`             | integer          | Total number of variants.                                                                                                                                            |
| `variants`                   | array            | Up to 20 variants: `{ id, title, price, sku }`.                                                                                                                      |
| `published_at`, `created_at` | string or null   | Publication and creation dates (ISO 8601).                                                                                                                           |
| `shop`                       | object           | `id` and `domain` of the store.                                                                                                                                      |
| `ads`                        | array            | Up to 10 Meta ads that link to this product: `{ id, ad_archive_id, headline, media_type, image_url, landing_url, started_at, ended_at, is_active, ad_library_url }`. |
| `dashboard_url`              | string           | The store's page in Copyfy.                                                                                                                                          |

An unknown product id returns [`not_found`](/errors#not_found).
