> ## 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.

# Get Project

Retrieves a single project by ID, including settings used for AI visibility tracking.

<ParamField path="projectId" type="string" required>
  MongoDB-style project identifier.
</ParamField>

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

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

  project_id = "67a1c2d3e4f5061728394a5b"
  r = requests.get(
      f"https://api.finseo.ai/v1/projects/{project_id}",
      headers={"Authorization": "Bearer sk_live_xxxxxxxx"},
  )
  print(r.json()["data"])
  ```
</RequestExample>

<ResponseExample>
  ```json theme={"system"}
  {
    "data": {
      "id": "67a1c2d3e4f5061728394a5b",
      "name": "Finseo Marketing",
      "domain": "finseo.ai",
      "websiteUrl": "https://finseo.ai",
      "description": "AI visibility tracking for Finseo",
      "isDefault": true,
      "tags": ["product", "b2b"],
      "settings": {
        "brandAliases": ["Finseo", "Fin SEO"],
        "defaultLanguage": "en"
      },
      "createdAt": "2025-11-12T10:15:00.000Z",
      "updatedAt": "2026-03-28T14:22:00.000Z"
    }
  }
  ```
</ResponseExample>
