# Jasper Integration via LowCodeAPI
## Overview
Jasper AI API provides AI-powered content generation for marketing, sales, and business content.
## Base Endpoint
```
https://api.lowcodeapi.com/jasper/
```
## Authentication
LowCodeAPI handles authentication automatically using API key credentials.
**Auth Type**: API Key
## Common Endpoints
### Category: Content
#### Generate Content
**Method**: `POST` | **LowCodeAPI Path**: `/v1/generate`
**Full URL**:
```
https://api.lowcodeapi.com/jasper/v1/generate?api_token={api_token}
```
**Description**: Generate AI content
**Query Parameters**:
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `api_token` | string | Yes | Your LowCodeAPI authentication token |
**Body Parameters**:
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `prompt` | string | Yes | Content generation prompt |
| `tone` | string | No | Content tone |
**Example Request**:
```bash
curl -X POST "https://api.lowcodeapi.com/jasper/v1/generate?api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Write a product description for a smartwatch",
"tone": "professional"
}'
```
---
## Usage Examples
### Example 1: Generate Marketing Content
```bash
# Generate content
# No ID required
curl -X POST "https://api.lowcodeapi.com/jasper/v1/generate?api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Create a blog post about AI in marketing"
}'
```
## Complete Endpoint Reference
- **Official Documentation**: [https://www.jasper.ai/api](https://www.jasper.ai/api)