Everything you need to integrate our services into your code.
High performance text generation API. Conversational AI capable of answering questions, writing code, and logic processing.
https://r-gengpt-api.vercel.app/api/chat
| Parameter | Requirement | Description |
|---|---|---|
| prompt | Required | The user's input or question. URL encoded. |
const prompt = "Hello, who are you?"; const url = `https://r-gengpt-api.vercel.app/api/chat?prompt=${encodeURIComponent(prompt)}`; fetch(url) .then(response => response.text()) .then(data => console.log(data)) .catch(error => console.error('Error:', error));
Convert text descriptions into ultra-realistic images. Features dynamic aspect ratios, massive prompt engineering, and strict JSON (JSend) responses.
https://r-gengpt-api.vercel.app/api/image
| Parameter | Type | Options / Info |
|---|---|---|
| prompt | Required | Description of the image (e.g., A cyberpunk city). |
| ar | Optional | 1:1, 16:9, 9:16, 4:3, 3:4, 21:9 |
| style | Optional | realistic, anime, cyberpunk, cinematic, none |
fetch("https://r-gengpt-api.vercel.app/api/image?prompt=A+beautiful+sunset&style=realistic&ar=16:9") .then(res => res.json()) .then(data => { if(data.status === 'success') { console.log("Image URL:", data.data.url); } });
Generate high-quality, fully customizable QR codes from any text or URL instantly.
https://r-gengpt-api.vercel.app/api/generate-qr
| Parameter | Status | Description & Example |
|---|---|---|
| data | Required | The URL or text. E.g., https://google.com |
| size | Optional | Resolution in pixels. Default: 300. E.g., 500 |
| color | Optional | Foreground HEX without #. E.g., ff0000 |
| bg | Optional | Background HEX without #. E.g., ffffff |
| format | Optional | Image format: png or svg |
curl "https://r-gengpt-api.vercel.app/api/generate-qr?data=https://t.me/RGenGPT_Bot&size=500&color=0088cc&bg=ffffff" --output qrcode.png
Fetch comprehensive real-time player data, stats, guild info, and equipped assets using a player's UID. Features 100% uptime with a dynamic fallback engine.
https://r-gengpt-api.vercel.app/api/freefire/info
| Parameter | Status | Description & Example |
|---|---|---|
| uid | Required | The numeric Player ID. E.g., 8008784369 |
| region | Optional | Server region (bd, ind, sg, etc.). Default: bd |
fetch("https://r-gengpt-api.vercel.app/api/freefire/info?uid=8008784369®ion=bd") .then(res => res.json()) .then(data => console.log(data));
Generates completely random, structured user profiles (Name, Address, Email, Phone, DOB, etc.) for testing and mock data.
https://r-gengpt-api.vercel.app/api/fakeuser/
{
"status": 200,
"data": {
"name": "John Doe",
"gender": "Male",
"email": "john.doe@example.com",
"phone": "+1-234-567-8901",
"country": "United States",
"address": "123 Mockingbird Ln, NY",
"dob": "1990-05-14"
}
}
Extract direct MP4 download links from platforms like YouTube, Facebook, Instagram, TikTok.
https://r-gengpt-api.vercel.app/api/video/download
| Parameter | Description |
|---|---|
| url | The full URL of the social media video. (Required) |
Usage Example: Append the video link directly to the parameter. E.g., ?url=https://youtube.com/watch?v=...
Upload small files and receive a direct URL to the stored file. Useful for temporary file hosting.
https://r-gengpt-api.vercel.app/api/storage?upload=
This endpoint requires an active Enterprise API Key to prevent abuse. Contact admin to gain upload access.
Test the APIs live in your browser before writing any code.
Image will appear here
Player JSON data will appear here