Ai Fortune Teller
Playground
Try it on WavespeedAI!AI Fortune Teller provides personalized fortune reading based on your birth info, with optional palm/face photo analysis. Ready-to-use REST inference API, no coldstarts, affordable pricing.
Features
AI Fortune Teller
AI Fortune Teller is your digital gateway to cosmic insights. Combining ancient fortune-telling traditions — astrology, numerology, palmistry, and face reading — with cutting-edge AI, it delivers personalized destiny readings in seconds. Curious about your love life? Career path? What the stars have in store? Just ask.
Why Choose This?
-
Ancient wisdom meets AI Blends time-honored fortune-telling arts with modern artificial intelligence for surprisingly insightful readings.
-
Your cosmic profile Analyzes your name, birthday, birthplace, and current life circumstances to build a complete picture of your destiny.
-
Palm & face reading Upload a photo of your palm or face to unlock deeper, vision-based insights into your life path.
-
Ask anything Love? Money? Career? Health? Family? That big decision you’ve been putting off? Go ahead, ask.
-
Instant delivery No waiting for the stars to align — get your personalized reading in seconds.
Parameters
| Parameter | Required | Description |
|---|---|---|
| name | Yes | Your name (the universe needs to know who’s asking) |
| birthday | Yes | Your birthday — include birth time for extra accuracy |
| gender | Yes | Your gender: male or female |
| birthplace | No | Where your journey began |
| current_location | No | Where you are now |
| is_married | No | Your relationship status |
| question | No | What’s on your mind? (career, love, health, wealth…) |
| image | No | Palm or face photo for vision-based reading |
How to Use
- Introduce yourself — name, birthday, and gender are required.
- Add context — birthplace, location, and marital status help refine your reading.
- Ask your question — be specific for better insights.
- Upload a photo (optional) — palm or face for deeper analysis.
- Discover your fortune — click Run and see what destiny has to say.
Pricing
| Mode | Cost |
|---|---|
| Text only | $0.035 |
| With image | $0.085 |
Best Use Cases
- Life crossroads — Big decision? Let the cosmos weigh in.
- Love & relationships — Will you find love? Is this the one? What’s next?
- Career guidance — Should you take that job? Start that business? Ask for that raise?
- Self-discovery — Learn about your personality, strengths, and hidden potential.
- Party fun — Fortune readings make great icebreakers and entertainment.
- Daily curiosity — What does today have in store for you?
Pro Tips
- Birth time matters — include it for significantly more accurate readings.
- Specific questions get specific answers — “Will I get promoted this year?” beats “Tell me about my career.”
- For palm readings: clear lighting, flat hand, fingers spread.
- For face readings: front-facing, well-lit, neutral expression.
- Try multiple questions to explore different aspects of your fortune.
Notes
- Name, birthday, and gender are required fields.
- Image analysis adds $0.05 for enhanced vision-based insights.
- For entertainment purposes — the future is still yours to write.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/ai-fortune-teller" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"is_married": false
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| name | string | Yes | - | - | Your name. |
| birthday | string | Yes | - | - | Your birthday with time for more accuracy (e.g. 1990-01-15 08:30). |
| gender | string | Yes | - | male, female | Your gender. |
| birthplace | string | No | - | - | Your birthplace (optional). |
| current_location | string | No | - | - | Your current location (optional). |
| is_married | boolean | No | false | - | Whether you are married. |
| question | string | No | - | - | Specific question about career, love, health, etc. (optional). |
| image | string | No | - | Palm or face photo for vision-based reading (optional). |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | string | Array of URLs to the generated content (empty when status is not completed). |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |