---
title: "Get Product"
method: GET
path: "/api/datastore/products/{id}/"
tags: ["Datastore"]
---

# Get Product

`GET /api/datastore/products/{id}/`

Retrieve details of a specific dataset from the Netlas Datastore.

## Path parameters

- `id` integer, required — A unique identifier for the product. Datasets belong to Product objects. A product can include one or multiple datasets.

## Response `200`

__A Single Product__

- DatastoreProduct
  - `id` integer, required — A unique identifier for the product.
  - `description` string — Description of the product.
  - `datasets` Dataset[], required — List of datasets included in the product.
    - `id` integer, required — A unique identifier for the dataset.
    - `product_id` integer, required — A unique identifier for the product. Datasets belong to Product objects. A product can include one or multiple datasets.
    - `name` string — The internal system name of the dataset.
    - `pretty_name` string — Human-readable name of the dataset.
    - `price` string — Price of the dataset in USD.
    - `added_dt` string, date-time — Date and time when the dataset was published.
    - `samples` object[] — List of dataset samples.
    - `ext` string[] — Formats in which the dataset is available.
    - `description` string — Description of the dataset.
    - `priority` integer — Sorting priority of the dataset.
    - `grouping_args` string — _Deprecated field (not used)_.
    - `fields` string[] — List of fields in the dataset.
    - `search_query` string — The search query linked to this dataset. Use this query to find similar data in Netlas Search tools (see `data_type`).
    - `size` object — Size of the dataset in bytes.
    - `data_type` 1 | 2 | 4 | 6 | 7 — The type of data contained in the dataset: - 1: Response data - 2: Domain data - 4: PTR records - 6: IP WHOIS data - 7: Domain WHOIS data
  - `data_type` object — Type of product.
  - `data_category` object — Object representing the category of the product.
  - `count` integer — Total count of items in the product.
  - `size` object — Size of the product in bytes.
  - `name` string — System symbolic name of the product.
  - `pretty_name` string — Human-readable (pretty) name of the product.
  - `fields` string[] — List of fields in the product.
  - `price` number — Price of the product in USD.
  - `priority` integer — Sorting priority of the product.
  - `has_restricted_access` boolean — Whether the product is restricted to paid subscribers.
  - `meta_data` object — Additional metadata for the search engines.

## Other responses

- `404` — __Not Found__: Requested resource could not be found
- `500` — __Internal Server Error__: Details are included in the response body

---

[API](https://skmtc.net/netlas/apis/netlas-api.md) · [All operations](https://skmtc.net/netlas/apis/netlas-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/netlas/netlas-api/revisions/2b1f84425791/schema)
