> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.astropods.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.astropods.com/_mcp/server.

# Stream account agent events (SSE)

GET https://astropods.com/api/v1/accounts/{account}/events

Server-Sent Events stream of agent build changes for an account.
Requires membership of the account.

Opens with a `ready` event, then sends an `agent.build` event whenever a
build changes state, and a `heartbeat` every 25 seconds. An `agent.build`
event names the agent that changed in `agent`, with `build_id` and
`status` when they apply. Treat it as a signal to refetch the agent's
build status: the API stays the authority, and an event the client
misses costs a late refresh rather than a wrong screen.

Each `agent.build` event carries an `id`. Reconnect with that value in
the `Last-Event-ID` header, or in the `last_event_id` query parameter
when the client cannot set headers, to receive the events it missed.
Replay is capped; when it is, `ready` carries `"resync": true`, meaning
the client is not guaranteed current and should refetch.

Events for an agent an account deploys from arrive on that account's
stream as well as the publisher's.


Reference: https://docs.astropods.com/api-reference/astro-ai-api/accounts/stream-account-events

## Authentication

- `Authorization` header (bearer token, required) — OAuth 2.0 device flow or platform session token

## Request

### Path parameters

- `account` (string, required) — Account name (slug)

### Query parameters

- `last_event_id` (string, optional) — Cursor to replay from, for a client that cannot set the Last-Event-ID header

## Response

### 200

Server-Sent Events stream of account agent events

- Streaming response of `string`.

## Errors

### 401 Unauthorized Error

Authentication required

- `error` (string, optional)
- `details` (string, optional)

### 403 Forbidden Error

Insufficient permissions for this account

- `error` (string, optional)
- `details` (string, optional)

### 500 Internal Server Error

Server error

- `error` (string, optional)
- `details` (string, optional)

## Examples

**SDK Code**

```python
import requests

url = "https://astropods.com/api/v1/accounts/account/events"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript
const url = 'https://astropods.com/api/v1/accounts/account/events';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://astropods.com/api/v1/accounts/account/events"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://astropods.com/api/v1/accounts/account/events")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://astropods.com/api/v1/accounts/account/events")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://astropods.com/api/v1/accounts/account/events', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://astropods.com/api/v1/accounts/account/events");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://astropods.com/api/v1/accounts/account/events")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```