Skip to main content
GET
/
api
/
v1
/
public
/
prompts
/
{prompt_id}
/
detail
Get Prompt Detail
curl --request GET \
  --url https://api.tryhikoo.com/api/v1/public/prompts/{prompt_id}/detail \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "content": "<string>",
  "visibility_score": 123,
  "coverage_cited": 123,
  "coverage_total": 123,
  "topic_id": 123,
  "topic_name": "<string>",
  "localizations": [
    "worldwide"
  ],
  "visibility_delta_7d": 123,
  "best_rank": 123,
  "ai_search_volume": 123,
  "ai_volume_delta": 123,
  "volume_trend": [],
  "visibility_30d": [],
  "per_platform": [],
  "latest_answers": []
}

Authorizations

Authorization
string
header
required

Personal API key created in the dashboard (Settings > API keys).

Headers

authorization
string | null

Bearer <api_key>

X-MCP-Secret
string | null

Path Parameters

prompt_id
integer
required

Query Parameters

answers_limit
integer
default:5
Required range: 1 <= x <= 20
website_id
integer
required

Target website id

Response

Successful Response

Full prompt detail payload powering the detail panel.

Aggregates: current visibility + 7d delta, best rank with platform, coverage X/N, 30-day sparkline, per-platform grid and N latest answers.

id
integer
required
content
string
required
status
enum<string>
required

Derived health status for a prompt.

Computed at query time from the current visibility score and the 7-day delta. Not persisted: changing thresholds is a no-op migration.

Thresholds (validated with product):

  • WINNING: score >= 70 AND delta_7d >= 0
  • AT_RISK: 30 <= score < 70 OR delta_7d <= -10
  • LOSING: score < 30 AND delta_7d < 0
  • UNCLAIMED: score == 0 (no platform cites the website)
Available options:
winning,
at_risk,
losing,
unclaimed
visibility_score
number
required
coverage_cited
integer
required
coverage_total
integer
required
topic_id
integer | null
topic_name
string | null
intent
enum<string> | null
Available options:
informational,
comparative,
transactional,
navigational
journey_stage
enum<string> | null
Available options:
discovery,
consideration,
decision,
retention
localizations
string[]
visibility_delta_7d
number | null
best_rank
integer | null
best_rank_platform
enum<string> | null
Available options:
ChatGPT,
Gemini,
AI Overviews,
Google AI Mode,
Perplexity,
Mistral,
Claude,
DeepSeek,
Grok,
Copilot
ai_search_volume
integer | null
ai_volume_delta
number | null
volume_trend
PromptVolumeTrendPointSchema · object[]
visibility_30d
PromptVisibilityPointSchema · object[]
per_platform
PromptPlatformDetailSchema · object[]
latest_answers
PromptLatestAnswerSchema · object[]