Developer API

Integrate abesttools.com functionality directly into your applications.


Get your API token

Create an account and subscribe ($9/month) to start using the API.

Authentication

All API endpoints require a valid API token. Pass it in every request as a query parameter or header:

  • Query parameter: ?token=YOUR_TOKEN
  • Header: Authorization: Bearer YOUR_TOKEN

An active subscription ($9/month) is required to activate your token. Manage your token in Settings.

Available APIs

Webpage Metadata

Extract title, description, Open Graph tags, Twitter cards, canonical URL, favicon and more from any webpage with a single GET request.

GET /api/metadata?url=…&token=…
View documentation →
CSV to JSON

Convert CSV data or a remote CSV file URL to a structured JSON array. Supports custom delimiters and optional header row.

POST /api/csv-to-json
View documentation →
Memory Store

Append-only personal fact store. Write snippets with tags, confidence scores, and optional decay. Search by text or tags. Pin, archive, or adjust confidence on demand.

POST /api/memory GET /api/memory/search
PATCH /api/memory/{id} DELETE /api/memory/{id}
View documentation →
Humanize Text

Rewrite formal or AI-generated text to sound more natural using deterministic, rule-based transformations. Supports English, Lithuanian, and Russian with three modes and adjustable strength.

POST /api/humanize
View documentation →