Skip to main content
GET
/
api
/
v1
/
prompts
Get Prompts
curl --request GET \
  --url https://api.athenahq.ai/api/v1/prompts \
  --header 'x-api-key: <api-key>'
{
  "prompts": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "prompt": "How to optimize website performance",
      "status": "active",
      "country": "United States",
      "topic_name": "Web Development",
      "current_monthly_searches": 5400,
      "current_total_value": 1250.5
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication. You can create one here.

Query Parameters

website_id
string<uuid>
required

The ID of the website to retrieve prompts for

status
enum<string>

Filter prompts by status. If omitted, returns both active and paused prompts.

Available options:
active,
paused

Response

Successful response with list of prompts

prompts
object[]
required