Tafra Tech for Developers

Connect any system to Tafra Tech

An open, fully documented REST API, ready-to-use SDKs, and Webhooks for every event that matters.

curl example — list students
curl https://api.tafra-tech.com/v1/students \
  -H "Authorization: Bearer $TAFRA_TOKEN" \
  -H "Accept: application/json"

Core concepts

Authentication

Use OAuth 2.0 or Personal Access Tokens for secure API access.

Authorization: Bearer <TOKEN>

Requests & responses

A JSON-based REST API. Supports pagination, filtering, and sorting with consistent conventions.

GET /api/v1/students?page=1&per_page=20

Webhooks

Receive platform events the moment they happen — enrollments, payments, and exam results.

POST https://your-app.com/webhooks/tafra

Rate limits

600 requests/minute by default. The limit can be raised for Enterprise plan customers.

X-RateLimit-Limit: 600

More resources

  • Quick start guide

    Your first API call in 5 minutes — from creating a token to fetching students.

  • Full REST API reference

    Every endpoint with requests, responses, and cURL examples.

  • Webhooks & Events

    A list of events, payload structures, and signature verification steps.

  • Official SDK libraries

    PHP, Node.js, Python — work with the platform without writing requests by hand.