GET /applications
List all applications with endpoint/message counts, supporting search and cursor pagination.

Authentication

API Key (header: X-API-Key) API Key (cookie: better-auth.session_token)

Query Parameters

org_id string optional query
Organization ID override
env_id string optional query
Environment ID override
cursor string optional query
Pagination cursor (created_at)
limit string optional query
Max results (default 50, max 100)
Example: "50"
search string optional query
Search by name or uid

Responses

200 Paginated list of applications
application/json
applications object[] REQUIRED
Array of:
id string REQUIRED
org_id string REQUIRED
env_id string REQUIRED
name string REQUIRED
uid string REQUIRED
description string | null REQUIRED
metadata string | null REQUIRED
status string REQUIRED
rate_limit integer | null REQUIRED
created_at string REQUIRED
updated_at string REQUIRED
endpoint_count integer
message_count integer
cursor string | null REQUIRED
401 Unauthorized
curl -X GET 'https://hookstream.io/v1/applications' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://hookstream.io/v1/applications', {
  method: 'GET',
  headers: {
      "Authorization": "Bearer YOUR_API_TOKEN"
  }
});

const data = await response.json();
console.log(data);
import requests

headers = {
    'Authorization': 'Bearer YOUR_API_TOKEN'
}

response = requests.get('https://hookstream.io/v1/applications', headers=headers)
print(response.json())
package main

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

func main() {
	req, _ := http.NewRequest("GET", "https://hookstream.io/v1/applications", nil)
	req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN")

	resp, _ := http.DefaultClient.Do(req)
	defer resp.Body.Close()
	result, _ := io.ReadAll(resp.Body)
	fmt.Println(string(result))
}
200 Response
{
  "applications": [
    {
      "id": "<string>",
      "org_id": "<string>",
      "env_id": "<string>",
      "name": "<string>",
      "uid": "<string>",
      "description": "<string>",
      "metadata": "<string>",
      "status": "<string>",
      "rate_limit": 123,
      "created_at": "<string>",
      "updated_at": "<string>",
      "endpoint_count": 123,
      "message_count": 123
    }
  ],
  "cursor": "<string>"
}
GET /applications
Ask a question... ⌘I