Sample code for 30+ languages & platforms
Dart

SimpleTexting - Check Remaining Credits

See more SimpleTexting Examples

Retrieve your remaining credit balance for the current billing cycle.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  // This example assumes the Chilkat API to have been previously unlocked.
  // See Global Unlock Sample for sample code.

  final http = CkHttp();

  // Implements the following CURL command:

  // curl --request GET \
  //   --url 'https://app2.simpletexting.com/v1/messaging/check?token=YOUR_API_TOKEN' \
  //   --header 'accept: application/json'

  // Use the following online tool to generate HTTP code from a CURL command
  // Convert a cURL Command to HTTP Source Code

  http.setRequestHeader('accept', 'application/json');

  final sbResponseBody = CkStringBuilder();
  try {
    http.quickGetSb('https://app2.simpletexting.com/v1/messaging/check?token=YOUR_API_TOKEN', sbResponseBody);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  final jResp = CkJsonObject();
  jResp.loadSb(sbResponseBody);
  jResp.emitCompact = false;

  print('Response Body:');
  print(jResp.emit());

  final respStatusCode = http.lastStatus;
  print('Response Status Code = $respStatusCode');
  if (respStatusCode >= 400) {
    print('Response Header:');
    print(http.lastHeader);
    print('Failed.');
    return;
  }

  // Sample JSON response:
  // (Sample code for parsing the JSON response is shown below)

  // {
  //   "code": 1,
  //   "message": "The request succeeded",
  //   "messagesCount": 2989
  // }

  // Sample code for parsing the JSON response...
  // Use the following online tool to generate parsing code from sample JSON:
  // Generate Parsing Code from JSON

  final code = jResp.intOf('code');
  final message = jResp.stringOf('message');
  final messagesCount = jResp.intOf('messagesCount');
}