π Quickstart
Connect to Scavio with Nango and see data flow in 2 minutes.1
Create the integration
In Nango (free signup), go to Integrations -> Configure New Integration -> Scavio.
3
Call the Scavio API
Letβs make your first request to the Scavio API (a Google search). Replace the placeholders below with your Environment API key, integration ID, and connection ID:Or fetch credentials with the Node SDK or API.β
Youβre connected! Check the Logs tab in Nango to inspect requests.
- cURL
- Node
4
Implement Nango in your app
Follow our quickstart to integrate Nango in your app.To obtain your own credentials, follow the setup guide linked below.
π Scavio integration guides
Nango-maintained guides for common use cases.- How do I link my account? Find your Scavio API key and connect it to Nango
API gotchas
- Scavio is billed in credits, not requests. Most endpoints cost 1 credit per call, but some cost more, so read the per-endpoint cost in the docs before running a large sync.
- Platform endpoints live under two versions. Google search endpoints are on
/api/v2/google; the other platforms are on/api/v1/<platform>/.... Copy the path from the endpointβs docs page rather than deriving it, since a few paths do not match their platform name. - The generic extract endpoint is
POST /api/v1/extract, which is not tied to a platform. It takes a URL and returns Markdown, plain text or HTML, and is priced by tier rather than by the flat per-call cost most platform endpoints use. - Most endpoints are
POSTwith a JSON body. Calling one withGETreturns a 404 rather than a 405, which reads like a missing endpoint.