Articlean is a powerful article processing and translation service that helps clean, parse, and translate web articles. This documentation covers the main features and how to use them.

Core Features

API Usage

Authentication

The API uses a two-step authentication process:

  1. Generate a JWT token using your credentials
  2. Create an API key using the JWT token
  3. Use the API key for all subsequent requests

1. Getting JWT Token

curl -X POST "<https://api.articlean.rima.media/token>" \\
  -H "Content-Type: application/x-www-form-urlencoded" \\
  -d "username=your_username&password=your_password"

Response:

{
  "access_token": "eyJ0eXAiOiJKV1QiLCJhbGc...",
  "token_type": "bearer"
}

2. Managing API Keys