Submit the PMF (Sean Ellis) survey
curl --request POST \
--url https://api.sitespy.app/api/v1/feedback/pmf \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"answer": "<string>"
}
'import requests
url = "https://api.sitespy.app/api/v1/feedback/pmf"
payload = { "answer": "<string>" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({answer: '<string>'})
};
fetch('https://api.sitespy.app/api/v1/feedback/pmf', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "ok"
}Feedback
Submit the PMF (Sean Ellis) survey
Records a one-time Product-Market-Fit survey response for the authenticated user. Returns 409 if the user has already submitted.
POST
/
feedback
/
pmf
Submit the PMF (Sean Ellis) survey
curl --request POST \
--url https://api.sitespy.app/api/v1/feedback/pmf \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"answer": "<string>"
}
'import requests
url = "https://api.sitespy.app/api/v1/feedback/pmf"
payload = { "answer": "<string>" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({answer: '<string>'})
};
fetch('https://api.sitespy.app/api/v1/feedback/pmf', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "ok"
}Authorizations
API key for authentication. You can find your API key in the Site Spy dashboard under Settings → API.
Body
application/json
Available options:
very_disappointed, somewhat_disappointed, not_disappointed, no_longer_using Free-text response to the follow-up question
Required string length:
10 - 2000Self-reported use case (optional)
Available options:
personal, freelance, small_business, other Reaction to €8/month price point (omit or null when pmf_score is no_longer_using)
Available options:
would_pay, find_alternative, stop_using, not_sure Response
Feedback recorded
Example:
"ok"

