Introduction
Welcome to the Informly developer documentation
Informly is a customer experience platform that brings surveys, contacts, coupons, referral campaigns, testimonials, tickets, and automations into a single workspace for your organization.
The Informly Public API lets you integrate Informly into your own applications. You can manage contacts, trigger surveys, issue coupons, and more — all through a REST API with official SDKs in TypeScript, Python, and Go.
What's in these docs
Guides
SDK quickstarts, authentication, error handling, pagination, and working with modules like Contacts.
API Reference
Interactive endpoint reference with SDK code samples, request/response schemas, and a built-in playground.
Quick overview
Base URL — All API requests go to: http://api.informly.co/api/v1
Authentication — Every request requires a Bearer token in the Authorization header. Tokens are created in the Informly dashboard under Settings > Apps. See Apps & API Tokens to get started.
Response format — All responses follow a consistent envelope:
{
"data": { ... },
"meta": { "total": 100, "page": 1, "pageSize": 20, "totalPages": 5 }
}Next step — Create your first app and API token.
Last updated on