Our REST API lets you generate images and automate marketing workflows.
https://api.marketech-solutions.com/v1
All API requests require your secret key in the Authorization header:
Authorization: Bearer <your_api_key>
POST /v1/images/generate — Create an image from a template. Returns a CDN URL.
curl https://api.marketech-solutions.com/v1/images/generate \
-X POST \
-H "Authorization: Bearer ***" \
-H "Content-Type: application/json" \
-d '{"template":"banner","modifications":[{"name":"title","text":"Hello"}]}'
POST /v1/posts — Create and publish content to connected social accounts.
POST /v1/posts/schedule — Schedule content for future publishing (ISO 8601).
Official SDKs available for Node.js, Python, PHP, and Ruby. Check our GitHub for examples.
const marketech = new Marketech("sk_..."); const image = await marketech.images.create({ template: "product-banner", modifications: [{ name: "headline", text: "Hello World!" }] });