Use the Datasources to ingest your own items, users, and interactions into embed.
Base URL:
https://api-us-east.mbd.xyz/v3/datasourcesPublic ingestion endpoints:
POST /datasources/{datasource_id}/itemsPOST /datasources/{datasource_id}/usersPOST /datasources/{datasource_id}/items/interactionsPOST /datasources/{datasource_id}/users/interactions
For user-to-user interaction events, send user_id_from, user_id_to, event_type, and timestamp.
{
"user_id_from": "user.123",
"user_id_to": "user.456",
"event_type": "follow",
"timestamp": 1762300000
}Create and test data sources in the embed Console before automating ingestion from your backend.

