Up and running in 5 minutes
Upload files via the dashboard or API:
/api/v1/assets
with multipart/form-dataSynergy automatically extracts rich metadata:
Images
Dimensions, DPI, color space (RGB/CMYK), ICC profile
PDFs
Page count, dimensions, fonts, PDF/X compliance
Fonts
Family, weight, style, glyph count
Pipelines transform data between systems without code. Connect REST APIs, SOAP services, and print equipment.
POST /api/v1/pipelines
{
"name": "JSON to XML Converter",
"config": {
"trigger": { "type": "http", "method": "POST", "path": "/convert" },
"blocks": [
{ "id": "1", "type": "parse_json", "config": {} },
{ "id": "2", "type": "to_xml", "config": { "rootElement": "data" } },
{ "id": "3", "type": "return_response", "config": {} }
],
"connections": [
{ "from": "1", "to": "2" },
{ "from": "2", "to": "3" }
]
}
}
| Category | Blocks |
|---|---|
| Parse | parse_json, parse_xml, parse_jdf |
| Transform | map_fields, validate, filter_fields,
merge_data
|
| Generate | to_json, to_xml, to_jdf |
| Forward | forward_rest, forward_soap,
forward_jdf
|
syn_)curl https://your-domain.railway.app/api/v1/assets \
-H "Authorization: Bearer syn_your_api_key_here"