Intempt
  1. API Reference
Intempt
  • Installation
    • Basic Intempt Installation
    • Create source
    • Web Snippet
    • Google Tag Manager
    • Autocapture setup
    • SPA tracking
    • Environment Setup
    • Validating Installation
  • SDK
    • JS SDK
    • Android SDK
    • iOS SDK
    • Node.js SDK
  • API Reference
    • Track data
      POST
    • Consent
      POST
    • Choose API
      POST
    • Recommendations Feed API
      POST
  • Data Ingestion & Tracking
    • identify()
    • track()
    • record()
    • alias()
    • group()
    • consent()
    • intempt:html / intempt:page / intempt:session
    • Product Catalog Ingestion via API
  • Data Models & Event Schema
    • Event Schema Overview
    • Required Fields
    • Attribute Schema
    • Product Catalog Schema
  • Webhooks
    • Webhook Configuration
  • Server Side Experiments
    • Overview
    • Choose API endpoint
    • Handling Experiment Response
  1. API Reference

Recommendations Feed API

POST
/{orgName}/projects/{projectName}/feeds/{id}/data

Request

Path Params

Query Params

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '//projects//feeds//data?apiKey' \
--header 'Content-Type: application/json' \
--data-raw '{
    "type": "PROFILE",
    "id": "prof_jtalemkw_5928174630519_zamrittoQ7",
    "sourceId": "4829375106281943752",
    "fields": ["id", "price", "link", "updatedAt"],
    "productId": "1234"
}'
Response Response Example
{
    "products": [
        {
            "id": "4821",
            "price": 51.04,
            "link": "https://example.com/item/alpha-4921",
            "updatedAt": "Nov 25, 2025 11:43 AM"
        },
        {
            "id": "9375",
            "price": 369.05,
            "link": "https://example.com/item/beta-9375",
            "updatedAt": "Nov 25, 2025 11:43 AM"
        },
        {
            "id": "6142",
            "price": 275.92,
            "link": "https://example.com/item/gamma-6142",
            "updatedAt": "Nov 25, 2025 11:30 AM"
        }
    ]
}
Modified at 2025-11-27 09:57:19
Previous
Choose API
Next
identify()
Built with