Installation
Getting started with Gomobile takes just a few minutes. This guide covers obtaining credentials and verifying your connection to the API.
Get your API credentials
To access the Gomobile API, you'll need API credentials from our team.
Once you receive your credentials, you're ready to start making API calls.
Verify your setup
After receiving your API key, verify everything is working by fetching your profile:
curl -X GET https://api.gomobile.io/users/me \
-H "Authorization: Bearer YOUR_API_KEY"You should see your user details along with your organization information.
Environment setup
We recommend storing your credentials as environment variables:
# Add to your .bashrc, .zshrc, or equivalent
export GOMOBILE_API_URL="https://api.gomobile.io"
export GOMOBILE_API_KEY="your-api-key"For production applications, consider using a secrets manager or environment-specific configuration.
API base URL
All API requests go to:
For testing and development, you may have access to a staging environment. Check with your administrator for the appropriate URL.
SDK options
While Gomobile provides a REST API that works with any HTTP client, we're working on official SDKs for popular languages:
JavaScript/TypeScript - Coming soon
Python - Coming soon
In the meantime, you can use any HTTP library in your preferred language.
Next steps
Now that you're set up, learn how authentication works in detail:
Authentication - Understand tokens and API keys
Last updated

