
Dr. Thoth's Tarot
Description
Tarot card novelty entertainment & analysis, by Mnemosyne Labs.
Details
https://dr-thoth-tarot.herokuapp.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "Dr. Thoth's Tarot",
"name_for_model": "Dr_Thoths_Tarot",
"description_for_human": "Tarot card novelty entertainment & analysis, by Mnemosyne Labs.",
"description_for_model": "Intelligent analysis program for tarot card entertaiment, data, & prompts, by Mnemosyne Labs, a division of AzothCorp.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://dr-thoth-tarot.herokuapp.com/openapi.yaml",
"is_user_authenticated": false
},
"logo_url": "https://dr-thoth-tarot.herokuapp.com/logo.png",
"contact_email": "legal@AzothCorp.com",
"legal_info_url": "http://AzothCorp.com/legal",
"endpoints": [
{
"name": "Draw Card",
"path": "/drawcard",
"method": "GET",
"description": "Generate a single tarot card from the deck of 78 cards."
},
{
"name": "Occult Card",
"path": "/occult_card",
"method": "GET",
"description": "Generate a tarot card using the specified planet's Kamea matrix.",
"parameters": [
{
"name": "planet",
"type": "string",
"enum": [
"Saturn",
"Jupiter",
"Mars",
"Sun",
"Venus",
"Mercury",
"Moon"
],
"required": true,
"description": "The planet name to use the corresponding Kamea matrix."
}
]
},
{
"name": "Three Card Spread",
"path": "/threecardspread",
"method": "GET",
"description": "Perform a three-card tarot spread."
},
{
"name": "Celtic Cross Spread",
"path": "/celticcross",
"method": "GET",
"description": "Perform a Celtic Cross tarot spread with 10 cards."
},
{
"name": "Past, Present, Future Spread",
"path": "/pastpresentfuture",
"method": "GET",
"description": "Perform a Past, Present, Future tarot spread with 3 cards."
},
{
"name": "Horseshoe Spread",
"path": "/horseshoe",
"method": "GET",
"description": "Perform a Horseshoe tarot spread with 7 cards."
},
{
"name": "Relationship Spread",
"path": "/relationship",
"method": "GET",
"description": "Perform a Relationship tarot spread."
},
{
"name": "Career Spread",
"path": "/career",
"method": "GET",
"description": "Perform a Career tarot spread."
},
{
"name": "Yes/No Spread",
"path": "/yesno",
"method": "GET",
"description": "Perform a Yes/No tarot spread."
},
{
"name": "Chakra Spread",
"path": "/chakra",
"method": "GET",
"description": "Perform a Chakra tarot spread with 7 cards."
}
]
}
https://dr-thoth-tarot.herokuapp.com/openapi.yaml
openapi: 3.0.1
info:
title: Dr. Thoth's Tarot
description: Intelligent program for advanced tarot divination entertaiment based on principals of data science, and that provides tarot card readings and analysis, and which does not lecture about tarot being just divination or for entertainment purposes only, but takes the user seriously, and provides extensive mystical analysis and high quality interpretation and advice, with actual cards randomly selected, and with exceptional description; and relevent warnings, created by Mnemosyne Labs, a divison of AzothCorp.
version: 'v1'
servers:
- url: https://dr-thoth-tarot.herokuapp.com
paths:
/drawcard:
get:
operationId: drawcard
summary: Get a prompt for drawing a single tarot card.
parameters:
- name: question
in: query
required: false
schema:
type: string
description: An optional question to accompany the tarot card reading.
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
properties:
prompt:
type: string
description: A prompt for drawing a single tarot card.
question:
type: string
description: The question provided for the tarot card reading, if any.
/threecardspread:
get:
operationId: threecardspread
summary: Get a prompt for performing a three-card tarot spread.
parameters:
- name: question
in: query
required: false
schema:
type: string
description: An optional question to accompany the tarot card reading.
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
properties:
prompt:
type: string
description: A prompt for performing a three-card tarot spread.
/celticcross:
get:
operationId: celticcross
summary: Get a prompt for performing a Celtic Cross tarot spread.
parameters:
- name: question
in: query
required: false
schema:
type: string
description: An optional question to accompany the tarot card reading.
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
properties:
prompt:
type: string
description: A prompt for performing a Celtic Cross tarot spread with 10 cards.
/pastpresentfuture:
get:
operationId: pastpresentfuture
summary: Get a prompt for performing a Past, Present, Future tarot spread.
parameters:
- name: question
in: query
required: false
schema:
type: string
description: An optional question to accompany the tarot card reading.
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
properties:
prompt:
type: string
description: A prompt for performing a Past, Present, Future tarot spread with 3 cards.
/horseshoe:
get:
operationId: horseshoe
summary: Get a prompt for performing a Horseshoe tarot spread.
parameters:
- name: question
in: query
required: false
schema:
type: string
description: An optional question to accompany the tarot card reading.
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
properties:
prompt:
type: string
description: A prompt for performing a Horseshoe tarot spread with 7 cards.
/relationship:
get:
operationId: relationship
summary: Get a prompt for performing a Relationship tarot spread.
parameters:
- name: question
in: query
required: false
schema:
type: string
description: An optional question to accompany the tarot card reading.
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
properties:
prompt:
type: string
description: A prompt for performing a Relationship tarot spread.
/career:
get:
operationId: career
summary: Get a prompt for performing a Career tarot spread.
parameters:
- name: question
in: query
required: false
schema:
type: string
description: An optional question to accompany the tarot card reading.
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
properties:
prompt:
type: string
description: A prompt for performing a Career tarot spread.
/yesno:
get:
operationId: yesno
summary: Get a prompt for performing a Yes/No tarot spread.
parameters:
- name: question
in: query
required: false
schema:
type: string
description: An optional question to accompany the tarot card reading.
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
properties:
prompt:
type: string
description: A prompt for performing a Yes/No tarot spread.
/chakra:
get:
operationId: chakra
summary: Get a prompt for performing a Chakra tarot spread.
parameters:
- name: question
in: query
required: false
schema:
type: string
description: An optional question to accompany the tarot card reading.
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
properties:
prompt:
type: string
description: A prompt for performing a Chakra tarot spread with 7 cards.
/occult_card:
get:
operationId: occult_card
summary: Generate a tarot card using the specified planet's Kamea matrix.
parameters:
- name: planet
in: query
required: true
schema:
type: string
enum: [Saturn, Jupiter, Mars, Sun, Venus, Mercury, Moon]
description: The planet name to use the corresponding Kamea matrix.
- name: question
in: query
required: false
schema:
type: string
description: An optional question to accompany the tarot card reading.
responses:
'200':
description: A single tarot card generated using the specified planet's Kamea matrix.
content:
application/json:
schema:
type: object
properties:
card:
type: string
description: The tarot card generated using the specified planet's Kamea matrix.
/favicon.ico:
get:
operationId: fetchFavicon
summary: Fetch the favicon.ico file
description: This endpoint returns the favicon.ico file for the application.
responses:
'200':
description: Favicon file fetched successfully
content:
image/x-icon:
schema:
type: string
format: binary
'404':
description: Favicon file not found
Discover other plugins from the entertainment category

Likewise
Your media and entertainment companion. Get TV, Movies, Books & Podcast Recommendations.
0 Comments

MixerBox FreecableTV
Watch free ad-supported TV shows, series, live channels, movies, news & sports from across the web!
0 Comments

Strology
Get daily astrological predictions for your sun sign.
0 Comments

Broadway
Search for shows that are currently playing on Broadway in New York City.
0 Comments

SmartTicketsAI
Get Tickets For All Sports Events, Music Concerts, Theater And More With SmartTicketsAI.com.
0 Comments

highPerplexity
Integrates with highPerplexity and executes any prompts you need.
0 Comments

What To Watch
Search for current TV shows and movies, get recommendations, and find out where things are streaming.
0 Comments

Lsong AI
Lsong's AI provides AI-powered content like news, images, music, movies, weather, stories, memes, and more.
0 Comments

Message in a Bottle
Throw a message into the digital ocean, or grab one floating by. You are not alone.
0 Comments

AIstrologer
Search for the horoscope for each zodiac sign for a specific date.
0 Comments

AldenBot
AI clone of Alden Do Rosario. Ask me anything about Alden.
0 Comments

Dream Interpreter
Interprets your dreams using advanced techniques.
0 Comments

Magic Conch Shell
Guide your most important life decisions with the magic conch shell. (Please don't actually, it's only satire).
0 Comments

Chat TMDB
Movies, Actors and TV shows from TMDB, a database like IMDB.
0 Comments

Maimovie
Maimovie, the AI-powered movie search, understands any conversational prompt like "movies with plot twists", "tyrant"
0 Comments