Submit a sales or pilot inquiry
POST
/v1/leads
const url = 'https://api.fromenance.com/v1/leads';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"name":"example","email":"hello@example.com","institution":"example","role":"example","segment":"bank","customers":"<250K","message":"example","source":"example","turnstile_token":"example","website":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.fromenance.com/v1/leads \ --header 'Content-Type: application/json' \ --data '{ "name": "example", "email": "hello@example.com", "institution": "example", "role": "example", "segment": "bank", "customers": "<250K", "message": "example", "source": "example", "turnstile_token": "example", "website": "example" }'Used by the fromenance.com contact and pilot forms. Rate limited per IP.
Request Body
Section titled “Request Body”Media typeapplication/json
object
name
required
string
email
required
string format: email
institution
string
role
string
segment
string
customers
string
message
string
source
Page path the form was submitted from.
string
turnstile_token
string
website
Honeypot. Leave empty.
string
Responses
Section titled “ Responses ”Accepted
Media typeapplication/json
object
ok
required
boolean
id
required
string
Example
{ "ok": true}Rate limited