1
Create your free account
Go to app.valendata.com and sign up. Every new account gets 100 free credits — no credit card required. Credits cover LLM tokens, browser session time, and web searches, so your first few runs cost you nothing.Once you’ve verified your email, you’ll land inside your default Workspace — the organizational unit where your Skills, Workflows, and credentials all live.
2
Create your first Skill
A Skill is a reusable API endpoint built from a saved browser automation Config. Configs are generated automatically when you run a session. So you need at least one session saved before publishing a Skill.
- In the sidebar, click Skills, then click + Create.
- In the Config dropdown, select the saved session config you want to publish as a Skill.
- Give your Skill a name and an optional description. Click the wand icon to let AI suggest both from the config automatically.
- Set Visibility to
Private(only you can run it) orPublic(anyone with a valid API key can run it). - Optionally enable Monetize this skill if you want other users to pay credits to run it.
- Click Publish Skill. Valendata publishes the Skill as a versioned API endpoint and generates a
skill_id.
Input and output parameters are detected automatically from your config — you don’t need to define them manually. You can use Suggest to add or update them later from the Workspace tab on the Skill details page.
3
Run your Skill from the dashboard
Before wiring anything into your code, verify that the Skill works and the output looks right.If data is missing from the output, use Enrich to fill in the gaps. If you want more results or different behavior, describe what you need in the Refine box.
- Open the Skill you just created. The Workspace tab is shown by default.
- Fill in any input parameters if your Skill requires them, then click Run skill.
- Watch the live browser session — you’ll see the agent navigate, extract data, and return results.
- When the run finishes, the output panel shows structured JSON:
4
Call your Skill via the API
Once your Skill runs cleanly in the dashboard, integrate it into your application using the REST API. Grab your API key from Settings → API Keys.The API returns a response like this:
- cURL
- Python
- Node.js
What’s next?
You’ve built and called your first Skill. Here are the most common next steps.Schedule a Skill
Run your Skill automatically on a cron schedule — hourly, daily, or any custom interval. Wake up to fresh data without lifting a finger.
Build a Workflow
Chain multiple Skills together with HTTP steps and transforms to build end-to-end data pipelines that run as a single unit.
Browse the Marketplace
Clone a pre-built Skill from the public Marketplace, customize it for your use case, and ship in minutes instead of hours.