Response
Neon project identifier
Database project name (typically org_[organization_id])
Your organization UUID
Database connection details
Example Request
Example Response
Usage Examples
Python (psycopg2)
Node.js (pg)
CLI (psql)
Database Schema
Your organization database contains tables for:- agents - Agent configurations and metadata
- tasks - Task execution records
- knowledge_bases - Knowledge base metadata
- documents - Document records and processing status
- users - User information and permissions
- And more…
Security Notes
- The connection string includes credentials - keep it secure
- Use environment variables to store the connection string
- Never commit connection strings to version control
- The database is read-write - be careful with modifications
- SSL is required for all connections
Use Cases
- Custom analytics - Query task and agent data directly
- Data export - Extract data for external analysis
- Integration - Connect BI tools like Tableau, Metabase, etc.
- Backup - Create custom backup solutions
- Advanced queries - Perform complex SQL queries not available via API
Notes
- This is a Neon PostgreSQL serverless database
- Connection pooling is handled automatically
- Database is located in AWS us-west-2 region
- SSL mode is required for security
See Also
- [List Tasks](/API reference/v1/tasks/list-tasks) - Query tasks via REST API
- [List Agents](/API reference/v1/agents/list-agents) - Query agents via REST API
- Neon Documentation - Learn more about Neon PostgreSQL
Authorizations
API Key for authentication
Response
200 - application/json
Successful Response
Represents a Neon project used in xpander.ai for managing database resources.
Attributes: id (str): Unique identifier for the Neon project. name (str): Name of the Neon project. organization_id (Optional[str]): The associated organization ID, inferred from the name if not provided. connection_uri (Optional[ConnectionURIResponse]): The connection URI for the project.

