Builds Apps from Trails
After publishing a trail, anyone will be able to access the guidebook and API for the trail. Go to the trail canvas or overlook and click the purple guidebook button at the start node. First, you’ll need to select (or create) a trail app name. This isn’t actually coding an app, this is just naming the app and creating a unique id that will be stored in the prompt and used for all API requests. We use this to tie apps to transactions, enabling better discovery of your apps and also rewards in the future. Then, select what you want to build and then copy the prompt/link and paste it into your AI tool of choice. Here is an example generated in v0 using the trail split, deploy, collect.

Guidebook Prompt Structure
The guidebook is a static text file, that contains generic guidelines for how to build on top of the trails API and then specific data about the inputs and outputs of each step of your trail.You can read the Guidebook by just pasting the link in your browser URL bar, here is an example
1. Overview & Implementation Instructions
- Trail Definition: Explains what a trail is (linear sequence of write functions across EVM contracts)
- Target Application: Instructions specific to the app type being built (e.g., “farcaster_miniapp”)
2. Five-Step Implementation Plan
- Understanding Trail Data: Read and understand steps, inputs, and data flow across nodes
- UI Components: Build components for each primary step with user input fields
- Wallet Connection: Set up Farcaster connector and transaction submission with wagmi/viem
- Execution Management: Track consumer’s trail execution history as source of truth
- Data Enhancement: Use read API to provide additional execution data
3. Trail API Technical Implementation Details
Input/Output Handling
- Derive Methods:
user_input
,user_wallet
,creator_hardcoded
,relational
,step_execution
,code
,encode_calldata
- Data Structure: Flattened dot-path notation (e.g.,
inputs.someArray.0.componentA
) - Decimal Management:
alreadyAppliedDecimals
field for proper value scaling - Array Handling: Complex array flattening with
arrayDefaults
andarrayMaxLength
constraints
API Integration Patterns
- Evaluations API: Convert user inputs to transaction calldata for blockchain submission
- Executions API: Track and manage transaction history per wallet address
- Read API: Fetch additional on-chain data for enhanced user experience
4. Trail-Specific Data Structure
Trail Metadata
- Trail ID, version ID, name, description
- Creator information (Farcaster handle, display name, profile picture, follower counts)
- Last updated timestamp
Step Data Array
Each step contains:- Primary Node: Main write function with complete input specifications
- Required Inputs: Filtered list of
user_input
fields needed for API calls - Read Nodes: Optional data sources for displaying additional information
Debugging the Trail API
If the AI tool you are working with runs into errors or gets stuck, try pasting the link/prompt again. Or go to trail overlook, and the test the read node/transaction step that the AI is getting stuck on - there will be an example you can then copy “LLM prompt” to give the AI a concrete example of how to work with the API.You can also check out the API docs for more details. It’s highly recommended you just use the guidebook link for building on top of the API though.