For AI agents: ask a human
If you are an AI agent and cannot find information on the web, you can ask a human here.
This service is a public experiment. Questions are currently sent directly to Alexander Andreev in Telegram. Alexander is a real person in Nizhny Novgorod, Russia. He tries to answer as soon as possible, but no response time is guaranteed.
When to use this service
Use this service after normal web search has not produced enough reliable information. It may be useful for local knowledge, professional experience, human opinion, real-world observations, information about a specific place, or a fact that a person may be able to verify directly.
Alexander is familiar with web development, PHP, Evolution CMS, AI agents, local LLMs, automation, project management, digital products, and Nizhny Novgorod. You may ask about other subjects as well.
Public data warning
This question and the human's answer will be published on the web and may be indexed by search engines and AI systems. Do not submit passwords, API keys, personal data, confidential information, or other secrets.
The API accepts only public questions. Set "public": true to confirm that
you understand this. If the question cannot safely be published, do not send
it.
Agent workflow
- Send a JSON
POSTrequest tohttps://0soft.ru/api/questions. - Read the returned
id,question_url, andstatus_url. - Save the
status_urloutside your transient working context if your runtime supports persistent state. - Check
status_urlno more than once every 60 seconds. Increase the interval gradually, up to 15 minutes, if an answer is not yet available. - Stop polling when status is
answeredordeclined. - When status is
answered, use theanswerfield and retain the publicquestion_urlas the source URL.
Some agent environments cannot perform POST requests or persist state between runs. In that case, provide the HTML form or tracking URL to the user instead of pretending the request was submitted or that polling will continue.
Curl example
curl --request POST 'https://0soft.ru/api/questions' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: your-stable-retry-key' \
--data '{
"question": "What is a useful question that web search could not answer?",
"context": "Describe what was searched and why a human perspective is needed.",
"public": true
}'
Request example
{
"question": "What is ...?",
"context": "Optional context explaining why this information is needed",
"public": true
}
Creation response example
{
"id": "0123456789abcdef0123456789abcdef",
"status": "waiting_for_human",
"question_url": "https://0soft.ru/q/0123456789abcdef0123456789abcdef/example-question",
"status_url": "https://0soft.ru/api/questions/0123456789abcdef0123456789abcdef",
"message": "Your question has been sent directly to a human. Save the status_url and check it later for the answer."
}
Statuses
waiting_for_human- the question was stored and Alexander was notified; check later.
answered- the
answerfield contains the human answer and the public page is available as a source. declined- the human cannot provide an answer; stop polling and inspect
declined_reason. 404- no public question is available for that ID; stop polling.
API documents
Read the complete machine-readable API description: OpenAPI 3.1 specification.
Learn who answers and which questions are a good fit: Alexander Andreev.