---
title: "Get Starter Prompts"
method: GET
path: "/prompts/starter"
tags: ["PROMPT_LIBRARY"]
---

# Get Starter Prompts

`GET /prompts/starter`

Get starter prompts from public prompt library.
Optionally filter by entity_type and/or integration_type to get context-specific prompts.
Returns up to `public_max` (default 4) prompts sorted by created_at descending.

## Query parameters

- `entity_type` string, nullable — Filter prompts by entity type (e.g., snowflake_query, databricks_warehouse, dbt_model)
- `integration_type` string, nullable — Filter prompts by integration type (e.g., snowflake, databricks, dbt). Only prompts whose attributes.integration_type matches exactly are returned.
- `public_max` integer, nullable — Max number of public starter prompts to return. Defaults to 4.

## Response `200`

Successful Response

- StarterPromptsResponse — Response schema for starter prompts with contextual hello message
  - `hello_message` string, nullable
  - `prompts` PromptResponse[], required
    - `id` string, uuid, required
    - `title` string, required
    - `description` string, nullable
    - `prompt_text` string, required
    - `tags` string[]
    - `teams` integer[], nullable
    - `created_by` integer, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `last_used_at` string, date-time, nullable
    - `attributes` object
    - `is_public` boolean

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/myaltimate/apis/fastapi.md) · [All operations](https://skmtc.net/myaltimate/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myaltimate/fastapi/versions/103580dad816/schema)
