Contact¶
1 endpoint(s).
| Endpoint | Method | Summary | Auth |
|---|---|---|---|
/api/v1/contact/submit |
POST |
Submit contact form |
POST /api/v1/contact/submit¶
Submit contact form
Request body (application/json)
| Field | Type | Required | Description |
|---|---|---|---|
name |
string |
yes | Sender's name |
email |
email |
yes | Sender's email |
subject |
string |
yes | Subject line |
message |
string |
yes | Message body |
website |
string |
no | (internal anti-bot) leave empty |
Response 422 — HTTPValidationError
Example
curl -X POST 'https://api.example.com/api/v1/contact/submit' \
-H 'Authorization: Bearer <API_KEY>'