API REFERENCE

REST APIDOCUMENTATION

Complete API reference for IbePlus services. Explore endpoints, authentication, request/response examples, and integration guides.

Base URL: https://api.ibeplus.com/v1
HTTPS Required

Endpoints

POST

Authentication

Authenticate user and receive access token

POST
/api/v1/auth/login

Parameters

email
string
Required

User email address

password
string
Required

User password

Request Example

curl -X POST https://api.ibeplus.com/v1/auth/login \
  -H "Content-Type: application/json" \
  -d '{
    "email": "user@example.com",
    "password": "your_password"
  }'

Response Example

{
  "success": true,
  "data": {
    "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
    "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
    "expires_in": 3600,
    "user": {
      "id": "user_123",
      "email": "user@example.com",
      "name": "John Doe"
    }
  }
}

Try It Live

Test API endpoints in our interactive playground

SDKs & Libraries

Download official SDKs for popular languages

Developer Support

Get help from our developer community

Ready to Start Building?

Get your API key and start integrating IbePlus services into your applications today.