Working with Products
Products represent the offerings you sell. Every prospect and outreach analysis is scoped to a product.
List your products
Start by listing all products configured for your team. This is typically the first API call you make.
curl https://dealsurface.com/api/v1/products \
-H "Authorization: Bearer $DEALSURFACE_API_KEY"Understanding product metadata
Each product includes associated metadata that DealSurface uses to find relevant prospects:
- Keywords — terms that describe the product. Used to match against prospect evidence. Some are auto-extracted from product descriptions.
- Sources — URLs or documents that describe the product (marketing pages, datasheets). Used to train the matching model.
- Industries — SIC codes representing target industries. Determines which companies are analyzed.
Get a specific product
Use the product ID from the list response to fetch details:
curl https://dealsurface.com/api/v1/products/12 \
-H "Authorization: Bearer $DEALSURFACE_API_KEY"Next steps
Once you have a product ID, you can rank prospects to find the companies most likely to buy.
Products are configured in the DealSurface dashboard. The API is read-only for products; to add or edit products, use the web interface.