Endpoints
GET /me
Return the authenticated merchant's profile.
GET
/api/v1/mesecret keyReturn the authenticated merchant's profile + capabilities. Useful for client startup. (Balance lives on GET /me/balance.)
Request
curl https://api.ionea.io/api/v1/me \ -H "Authorization: Bearer sk_test_51N8mP...exampleK3Y"
Response
{
"id": "MCH-001",
"name": "Acme Inc",
"email": "ops@acme.com",
"industry": "E-commerce",
"tier": "standard",
"trustScore": 720,
"environment": "sandbox",
"capabilities": {
"checkout": true,
"directCharge": true,
"refunds": true,
"webhooks": true,
"crypto": ["ETH","BTC","USDT"],
"methods": ["card","spei","pix"]
}
}Try itGET
/api/v1/mesandboxLive snippet
curl -X GET "https://api.ionea.io/api/v1/api/v1/me" \ -H "Authorization: Bearer sk_test_…YOUR_KEY"
Snippet updates as you edit the form. Sandbox responses are deterministic.