Receive mystical divination based on your astrological profile
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"profile": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"birthDate": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
},
"birthTime": {
"type": "string"
},
"gender": {
"type": "string",
"enum": [
"M",
"F"
]
},
"birthPlace": {
"type": "string"
}
},
"required": [
"birthDate"
],
"additionalProperties": false
},
"question": {
"type": "string",
"minLength": 1
},
"category": {
"type": "string",
"enum": [
"love",
"career",
"health",
"wealth",
"general"
]
}
},
"required": [
"profile",
"question"
],
"additionalProperties": false
}
Output Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"answer": {
"type": "string"
},
"astroHint": {
"type": "string"
},
"cost": {
"type": "string"
},
"txRef": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"sunSign": {
"type": "string"
},
"disclaimer": {
"type": "string"
}
},
"required": [
"answer",
"astroHint",
"cost",
"txRef",
"sunSign",
"disclaimer"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ask.all-time-high.ai/entrypoints/consult/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"profile": {
"birthDate": "string"
},
"question": "string"
}
}
'
Streaming divination consultation, ideal for chatbot scenarios
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"profile": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"birthDate": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
},
"birthTime": {
"type": "string"
},
"gender": {
"type": "string",
"enum": [
"M",
"F"
]
},
"birthPlace": {
"type": "string"
}
},
"required": [
"birthDate"
],
"additionalProperties": false
},
"question": {
"type": "string",
"minLength": 1
},
"category": {
"type": "string",
"enum": [
"love",
"career",
"health",
"wealth",
"general"
]
}
},
"required": [
"profile",
"question"
],
"additionalProperties": false
}
Output Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"answer": {
"type": "string"
},
"astroHint": {
"type": "string"
},
"cost": {
"type": "string"
},
"txRef": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"sunSign": {
"type": "string"
},
"disclaimer": {
"type": "string"
}
},
"required": [
"answer",
"astroHint",
"cost",
"txRef",
"sunSign",
"disclaimer"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ask.all-time-high.ai/entrypoints/consult-stream/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"profile": {
"birthDate": "string"
},
"question": "string"
}
}
'
Stream with curl
curl -sN -X POST \
'https://ask.all-time-high.ai/entrypoints/consult-stream/stream' \
-H 'Content-Type: application/json' \
-H 'X-Payment: {{paymentHeader}}' \
-H 'Accept: text/event-stream' \
-d '
{
"input": {
"profile": {
"birthDate": "string"
},
"question": "string"
}
}
'
Ask the Book of Answers and receive a mystical response
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"question": {
"type": "string",
"minLength": 1
}
},
"required": [
"question"
],
"additionalProperties": false
}
Output Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"answer": {
"type": "string"
},
"source": {
"type": "string",
"enum": [
"ai",
"mystical"
]
}
},
"required": [
"answer"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ask.all-time-high.ai/entrypoints/ask/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"question": "string"
}
}
'
Receive your daily fortune and guidance from the stars
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"birthDate": {
"type": "string"
}
},
"additionalProperties": false
}
Output Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"fortune": {
"type": "string"
},
"luckyNumber": {
"type": "number"
},
"luckyColor": {
"type": "string"
},
"advice": {
"type": "string"
}
},
"required": [
"fortune",
"luckyNumber",
"luckyColor",
"advice"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ask.all-time-high.ai/entrypoints/fortune/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"name": "string",
"birthDate": "string"
}
}
'
Ask the Book of Answers and receive a streaming mystical response
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"question": {
"type": "string",
"minLength": 1
}
},
"required": [
"question"
],
"additionalProperties": false
}
Output Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"answer": {
"type": "string"
},
"source": {
"type": "string",
"enum": [
"ai",
"mystical"
]
}
},
"required": [
"answer"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ask.all-time-high.ai/entrypoints/ask-stream/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"question": "string"
}
}
'
Stream with curl
curl -sN -X POST \
'https://ask.all-time-high.ai/entrypoints/ask-stream/stream' \
-H 'Content-Type: application/json' \
-H 'X-Payment: {{paymentHeader}}' \
-H 'Accept: text/event-stream' \
-d '
{
"input": {
"question": "string"
}
}
'
Echo input text (for testing)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"text": {
"type": "string",
"minLength": 1
}
},
"required": [
"text"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://ask.all-time-high.ai/entrypoints/echo/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"text": "string"
}
}
'