Developer quickstart
Create your first Letta agent with the API or SDKs and view it in the ADE
This guide will show you how to create a Letta agent with the Letta APIs or SDKs (Python/Typescript). To create agents with a low-code UI, see our ADE quickstart.
Prerequisites
- Create a Letta Cloud account
- Create a Letta Cloud API key

You can also self-host a Letta server. Check out our self-hosting guide.
Message your agent
The Letta API supports streaming both agent steps and streaming tokens. For more information on streaming, see our streaming guide.
Once the agent is created, we can send the agent a message using its id
field:
The response contains the agent’s full response to the message, which includes reasoning steps (chain-of-thought), tool calls, tool responses, and assistant (agent) messages:
You can read more about the response format from the message route here.
View your agent in the ADE
Another way to interact with Letta agents is via the Agent Development Environment (or ADE for short). The ADE is a UI on top of the Letta API that allows you to quickly build, prototype, and observe your agents.
If we navigate to our agent in the ADE, we should see our agent’s state in full detail, as well as the message that we sent to it:

Next steps
Congratulations! 🎉 You just created and messaged your first stateful agent with Letta, using both the Letta ADE, API, and Python/Typescript SDKs. See the following resources for next steps for building more complex agents with Letta:
- Create and attach custom tools to your agent
- Customize agentic memory management
- Version and distribute your agent with agent templates
- View the full API and SDK reference