> ## Documentation Index
> Fetch the complete documentation index at: https://docs.finseo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Projects

Returns a list of projects your API key can access. Projects represent tracked brands or domains in Finseo for AI visibility across ChatGPT, Claude, Perplexity, and other models.

<RequestExample>
  ```bash cURL theme={"system"}
  curl --request GET \
    --url https://api.finseo.ai/v1/projects \
    --header 'Authorization: Bearer sk_live_xxxxxxxx'
  ```

  ```python Python theme={"system"}
  import requests

  response = requests.get(
      "https://api.finseo.ai/v1/projects",
      headers={"Authorization": "Bearer sk_live_xxxxxxxx"},
  )
  projects = response.json()["data"]
  for p in projects:
      print(p["name"], p["id"])
  ```
</RequestExample>

<ResponseExample>
  ```json theme={"system"}
  {
    "data": [
      {
        "id": "67a1c2d3e4f5061728394a5b",
        "name": "Finseo Marketing",
        "domain": "finseo.ai",
        "websiteUrl": "https://finseo.ai",
        "description": "AI visibility tracking for modern brands",
        "isDefault": true,
        "tags": ["product", "b2b"],
        "createdAt": "2025-11-12T10:15:00.000Z",
        "updatedAt": "2026-03-28T14:22:00.000Z"
      },
      {
        "id": "67b2d3e4f5061728394a5c",
        "name": "Acme Corp",
        "domain": "acme.com",
        "websiteUrl": "https://www.acme.com",
        "description": "",
        "isDefault": false,
        "tags": [],
        "createdAt": "2026-01-08T09:00:00.000Z",
        "updatedAt": "2026-03-15T11:45:00.000Z"
      }
    ]
  }
  ```
</ResponseExample>
