API & Integrations
Build on top of There There.
A complete REST API, Slack integration, and webhook support. Integrate There There into your existing tools and workflows.
Full REST API
Complete programmatic access.
Manage tickets, messages, contacts, tags, channels, and team members through a clean REST API. Sanctum authentication, consistent patterns, and predictable JSON responses.
GET
GET /api/tickets?filter[status]=open
Authorization:
Bearer tk_3f8a...
Accept:
application/json
200 OK
{ "data": [{ "id": 1472, "subject": "Cannot access billing", "status": "open", "assignee": "jane@team.com" }], "meta": { "total": 24 } }
Code example
Simple to integrate.
Authenticate with API tokens and start making requests. The API supports creating and listing tickets, sending messages, managing contacts, and more.
bash
curl -X GET https://app.therethere.com/api/tickets \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
Stay in the loop
Slack integration.
Get Slack notifications for new tickets and @mentions. Reply directly from Slack without opening your browser.
# support-notifications
connected
There There
APP
2:34 PM
New ticket received
Subject:
Cannot log in after password reset
From:
david@customer.com
Channel:
Product Support
View Ticket
Webhooks
React to events in real time.
Set up webhooks to receive real-time notifications when tickets are created, updated, or closed. Push data to your CRM, analytics tools, or any service that accepts HTTP callbacks.
For complete API documentation, see our API reference.
Ready to try it yourself?
Start your 14-day free trial. No credit card required.