Get an account by ID
GET/api/v2/accounts/:id
Retrieves a specific account by its MongoDB ObjectID.
Rate Limit: 100 requests per 60 seconds
Access Control:
- Only accounts belonging to your organization can be accessed
- Attempting to access another organization's account returns 403 Forbidden
Note: The ID must be a valid MongoDB ObjectID (24 character hex string).
Request
Responses
- 200
- 400
- 401
- 403
- 404
- 429
- 500
Account details including balance and status.
Bad request - Invalid account ID format (must be valid ObjectID).
Unauthorized - Invalid or missing API key.
Forbidden - Account belongs to a different organization.
Account not found.
Rate limit exceeded.
Internal server error.