Physical marketing production — we make cool shit
Fieldkit is a physical marketing agency built by printers, fabricators, designers, and project managers. We help brands bring real-world campaigns to life! We work on everything from small print campaigns to full scale brand build outs.
- Marketing: https://www.builtbyfieldkit.com
- Customer Portal: https://fieldkit.cc
- Docs (developers + print prep + guides): https://docs.fieldkit.cc
- Fieldkit Print (self-serve ordering): https://fieldkitprint.com
This org contains the software and tooling behind our operational platform including:
- Public API + docs tooling (OpenAPI, webhooks)
- Shared libs (types/schemas/SDKs)
- Infra Shared assets and tools for the print industry
- Open Graphtec Server Our open source Graphtec datalink cutting server implementation
We aim to build things that are usable by the wider print industry as well as us
Fieldkit exposes a customer/partner Public API (currently Beta).
Your onboarding provides sandbox + production base URLs. Production is:
https://api.fieldkit.cc
All v1 endpoints live under:
/public/v1/*
Public API supports:
- API keys:
X-Public-API-Key: <key> - OAuth bearer tokens:
Authorization: Bearer <access_token>
- Idempotency: write endpoints require
Idempotency-Key: <uuid> - Request IDs: every response includes
X-Request-Id; errors includeerror.request_id
List products:
curl -sS \
-H "X-Public-API-Key: $FIELDKIT_PUBLIC_API_KEY" \
"https://api.fieldkit.cc/public/v1/products"