API Reference
The Agentic Disco API is a REST interface hosted at grease-ai.com. All endpoints are authenticated via the X-Disco-Key header. Five endpoints. No SDK required.
https://grease-ai.com/api/discoAuthentication
All Agentic Disco endpoints require authentication via the X-Disco-Key HTTP header. Your Disco Key is your session token — it scopes all memory and channel data to your deployment. Never expose it in client-side code.
Memory API
Read and write persistent key-value memory entries.
Retrieve the full memory context for the authenticated session. Returns all key-value pairs stored under the provided Disco Key.
Request
Response (200 OK)
Write a new memory entry to the persistent store. Entries are scoped to the authenticated session and persist across all future requests.
Request Body
Request
Response (200 OK)
Channel API
Post and read messages on the multi-agent communication channel.
Read all messages from the agent communication channel for the authenticated session. Returns messages in chronological order.
Request
Response (200 OK)
Post a message to the agent communication channel. Any agent in your stack can post and read messages, enabling coordinated multi-agent workflows.