# Get Project Strategies

> Pod Engine API endpoint reference, optimized for LLM consumption.
> Auto-generated from the source-of-truth endpoint registry.
>
> Category: Projects
> Source: https://www.podengine.ai/api-docs/get-project-strategies.md
> Interactive HTML docs: https://www.podengine.ai/api-docs/get-project-strategies
> Full API reference (all endpoints): https://www.podengine.ai/api-docs/llms.txt

**Base URL:** `http://localhost:4000`
**Auth:** Requires a Bearer token: `Authorization: Bearer YOUR_API_KEY`

---

#### GET /api/v1/projects/:projectSlug/strategies
**Get Project Strategies**

Get all strategies associated with a project

```bash
curl -X GET "http://localhost:4000/api/v1/projects/example-project/strategies" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

**Path parameters schema:**
```json
{
  "type": "object",
  "properties": {
    "projectSlug": {
      "type": "string"
    }
  },
  "required": [
    "projectSlug"
  ],
  "additionalProperties": false
}
```

**Response schema:**
```json
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "OK"
      ]
    },
    "data": {
      "type": "object",
      "properties": {
        "strategies": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "shortDescription": {
                "type": "string"
              },
              "strategyBlurb": {
                "type": "string"
              },
              "audiencePersonaTarget": {
                "type": "string"
              },
              "whyItsEffective": {
                "type": "string"
              },
              "strategyTrainingDocumentation": {
                "type": "string"
              },
              "keywordInspiration": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "exampleGoogleSearches": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "id": {
                "type": "string"
              },
              "createdAt": {},
              "updatedAt": {},
              "strategyApproach": {
                "nullable": true,
                "type": "string",
                "enum": [
                  "straightforward",
                  "unconventional",
                  "longshot"
                ]
              },
              "strategyFocus": {
                "nullable": true,
                "type": "string"
              },
              "priority": {
                "nullable": true,
                "type": "string",
                "enum": [
                  "low",
                  "medium",
                  "high",
                  "urgent"
                ]
              },
              "autoSearchEnabled": {
                "type": "boolean"
              }
            },
            "required": [
              "title",
              "shortDescription",
              "strategyBlurb",
              "audiencePersonaTarget",
              "whyItsEffective",
              "strategyTrainingDocumentation",
              "keywordInspiration",
              "exampleGoogleSearches",
              "id",
              "createdAt",
              "updatedAt",
              "strategyApproach",
              "strategyFocus",
              "priority",
              "autoSearchEnabled"
            ],
            "additionalProperties": false
          }
        }
      },
      "required": [
        "strategies"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "status",
    "data"
  ],
  "additionalProperties": false
}
```

---

## See also

- All endpoints in one file: https://www.podengine.ai/api-docs/llms.txt
- Full reference with every schema inlined: https://www.podengine.ai/api-docs/llms-full.txt
- OpenAPI 3.1 spec: https://www.podengine.ai/api-docs/openapi.json
- Get an API key: https://www.podengine.ai/get-started
- Support: support@podengine.ai
