Playground vs. Sandbox
Understanding the difference between our two environments will help you choose the right starting point:Playground
- Purpose: Learn and explore our GraphQL schema
- Interface: Full UI environment with built-in query builder
- Authentication: Automatic token generation
- Best for: Initial exploration, understanding available operations, testing queries
- Data: Simulated data that doesn’t persist
Sandbox
- Purpose: Begin actual integration development
- Interface: API endpoints for programmatic access
- Authentication: Your own API credentials and JWT tokens
- Best for: Building your integration, testing with your own code
- Data: Simulated data in a production-like environment
Integration Path
- Start with Playground - Get familiar with our GraphQL schema and available operations
- Move to Sandbox - Begin building your integration with API calls using your credentials
- Deploy to Production - Use production endpoints with production credentials
Both environments use simulated data. Nothing created in either environment
will transfer to production.
Next Steps
Choose your starting point based on your current needs:- New to Tesouro? Start with the Playground to explore our capabilities
- Ready to integrate or need API credentials? Jump into the Sandbox to begin development