API Documentation

Complete reference for GetTranscribe API

Base URL

https://api.gettranscribe.ai
Get User Info
Get user information including account balance
GEThttps://api.gettranscribe.ai/users/{id}

Headers

x-api-key: YOUR_API_KEY

Path Parameters

idrequired
number

The ID of the user to retrieve (use your own user ID)

Example Request

curl -X GET https://api.gettranscribe.ai/users/USER_ID \
  -H "x-api-key: YOUR_API_KEY"

Example Response

{
  "id": 2,
  "email": "user@example.com",
  "balance": 150.50,
  "created_at": "2025-01-01T00:00:00.000Z",
  "updated_at": "2025-01-15T10:30:00.000Z",
  "deleted_at": null,
  "subscription_status": "active",
  "monthly_transcription_limit": 1000,
  "used_transcriptions_this_month": 45
}

Note: The response includes user account information including current balance, subscription status, and transcription usage for the current month.