Run
Ask Raccoon to do any task on any website or extract data after a deep search
The following features are currently experimental:
- Proxies
- CAPTCHA Solving
- Deep Search
If you run into any issues, please report back to us through mail or use support center on the bottom right.
Authorizations
Body
The input query string for the request. This is typically the main prompt.
"Find YCombinator startups who got funded in W24."
The raccoon passcode associated with the end user on behalf of which the call is being made.
"<end-user-raccoon-passcode>"
The history of the conversation as a list of messages or objects you might use while building a chat app to give the model context of the past conversation.
[]
This is the entrypoint URL for the web agent.
"https://www.ycombinator.com/companies"
The expected schema for the response. This is a dictionary where the keys describe the fields and the values describe their purposes.
{
"address": {
"city": "What city is the company located in?",
"country": "Which country is the company located in?"
},
"funding_season": "The funding season like W24 as a string",
"name": "Name of the company as a string"
}
The maximum number of results to extract.
5
Whether the response should be streamed back or not.
true
Mode of execution.
deepsearch
, default
"deepsearch"
Advanced configuration options for the session, such as ad-blocking and CAPTCHA solving.
{
"block_ads": true,
"proxy": {
"city": "sanfrancisco",
"country": "us",
"state": "ca",
"zip": 94102
},
"solve_captchas": true
}
Response
The current status of the extraction task. For example: 'STARTING', 'PROCESSING', 'DONE', 'HUMAN_INTERACTION', or 'FAILURE'.
STARTING
, PROCESSING
, DONE
, HUMAN_INTERACTION
, FAILURE
"DONE"
A message providing the thought summary if the status is processing currently.
"The price of iPhone 16 on Amazon is $729.97."
The extracted data as a list of objects when the status is DONE. Each object represents an extracted entity.
[
{
"address": { "city": "San Francisco", "country": "USA" },
"funding_season": "W24",
"name": "Granza Bio"
},
{
"address": {
"city": "London",
"country": "United Kingdom"
},
"funding_season": "W24",
"name": "Konstructly"
}
]
Additional metadata or details related to the run task.
{ "sessionId": "1234" }
The Livestream URL
"https://api.flyingraccoon.tech/sessions/session_12345/stream?enable_actions=true&theme=dark"
Was this page helpful?