Skip to main content
In this quick start, you’ll connect your IDE to Xano using the XanoScript extension, edit a real endpoint, sync the changes back to Xano, and run it.
2

Connect to Xano

Make sure you have the folder you want to work in open before continuing.
1

Click the Xano logo in the left sidebar and choose Get Started

getting-started-code-20260112-095637
2

Login to Xano

Click Login to Xano to authenticate with your Xano account and follow the instructions.getting-started-code-20260112-095955
3

Pull changes from Xano into your IDE

Select your instance from the dropdown that appears, and then select your workspace and your live branch.After selection, click Pull Changes to get everything that’s currently present in your Xano workspace.getting-started-code-20260112-100203
4

Generate AI Agent Instructions

The extension will generate AI Agent instructions for your Xano workspace. It is highly recommended to generate these for the best possible experience. Select Setup AI Agent Instructions. These files help AI coding tools understand your workspace structure and XanoScript conventions.
3

Ask the AI Agent to make a change

We’ll ask it to add a step that sends a welcome email on successful user registration.getting-started-ai-20260119-171910The Copilot will take a moment or two to plan and make the requested changes. When it’s done, you can review the updated XanoScript and choose to keep the changes.getting-started-ai-20260119-172009
4

Save and sync to Xano

Save your changes, and then click the option in the XanoScript extension to stage your changes.getting-started-code-20260112-101847Push your changes to Xano. Progress is shown in a notification in the bottom-right corner.getting-started-code-20260112-101647
5

Call the modified API

Send a POST request to your auth/signup endpoint and review the results.
curl -X POST "https://your-xano-instance.xano.io/api:abcD123/auth/signup" \
-H "Content-Type: application/json" \
-d '{
  "name": "John Doe",
  "email": "[email protected]",
  "password": "super_secure_password"
}'
You should receive a welcome email shortly after the request completes.
6

Visually validate the change in Xano

This step is optional, but you can quickly see the parity between your code and the visual representation.Head into Xano, and navigate to your auth/signup API by clicking API in the left-hand nav, choose the Authentication group, and click auth/signup.You should see the Send Email step at the end of the logic, right after the Create Authentication Token step.getting-started-code-20260112-103534