Developer API

Integrate our SMS verification services directly into your applications using our simple and powerful REST API.

Authentication

Use this API Key to authenticate your requests. Pass it as a query parameter api_key or header X-API-KEY.

API Status: Online
Endpoint: https://api.authsms.net/api
Your Balance: $0

Endpoints

GET/api/auth/me

Get User Profile

Retrieve your account details and current balance.

Parameters

NameTypeRequiredDescription
api_keystringRequiredYour unique API key

Example Request

curl -X GET "https://api.authsms.net/api/auth/me?api_key=YOUR_API_KEY"

Example Response

{
  "success": true,
  "user": {
    "username": "johndoe",
    "email": "john@example.com",
    "balance": 150.5,
    "role": "user"
  }
}