Skip to main content
POST
/
api
/
contact
Contact
curl --request POST \
  --url https://maria-api.vercel.app/api/contact \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "<string>",
  "subject": "<string>",
  "message": "<string>"
}
'
{
  "received": true,
  "message": "<string>"
}

Body

name
string
Your name (optional).
email
string
required
Your email address. I’ll reply here.
subject
string
required
What it’s about.
message
string
required
Your message.

Response

received
boolean
Whether the message was successfully sent.
message
string
Confirmation note.