Authentication
The Multiwoven API uses a JWT-based authentication mechanism. To access the API, you need a valid JWT token which should be included in the header of your requests. This ensures that your interactions with the API are secure and authenticated.API Endpoints
The Multiwoven API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.Base URL
The base URL for all API requests ishttps://api.multiwoven.com/v1/.
API Reference
The API reference contains a list of all the endpoints available in the Multiwoven API. You can also use the navigation bar on the left to browse through the different endpoints.Models
Models are the core of the Multiwoven API. They represent the different entities in the Multiwoven platform.
Connectors
Connectors help connect various data warehouse sources or destinations to the Multiwoven platform.
Syncs
Syncs help you sync data between different data warehouse sources and destinations.
Audiences
Audiences allow you to send targeted customer segments from data sources to various destinations.
Pagination
Requests that return multiple items will be paginated to 100 items by default. You can specify further pages with thepage parameter. You can also set a custom page size up to 100 with the page_size parameter.
Rate Limiting
The Multiwoven API is rate limited to 100 requests per minute. If you exceed this limit, you will receive a429 Too Many Requests response.
Errors
The Multiwoven API uses conventional HTTP response codes to indicate the success or failure of an API request. In general, codes in the2xx range indicate success, codes in the 4xx range indicate an error that failed given the information provided, and codes in the 5xx range indicate an error with Multiwoven’s servers.