You're viewing the public documentation

The API key shown below is an example placeholder. After you create an account or log in, the documentation will display your real personal API key.

REST API Reference

Connect directly to our high-performance edge network via standards-based REST endpoints.

Example API Key

This is a placeholder key for demonstration. Log in to see and copy your real key.

gvoice_cloude_token_EXAMPLE_KEY_12345678

Base API URL

https://cloud.gvoice.app/api/

Files Endpoints

Specialized actions for your files collection.

POST

Upload File

https://cloud.gvoice.app/api/upload-file.php
const formData = new FormData();
formData.append('file', fileInput.files[0]);
formData.append('api_key', 'gvoice_cloude_token_EXAMPLE_KEY_12345678');
formData.append('reduce_size', 'true');

fetch('https://cloud.gvoice.app/api/upload-file.php', { method: 'POST', body: formData });
GET

View One File

https://cloud.gvoice.app/api/get-media-details.php
fetch('https://cloud.gvoice.app/api/get-media-details.php?api_key=gvoice_cloude_token_EXAMPLE_KEY_12345678&id=12345');
GET

View All Files

https://cloud.gvoice.app/api/get-files.php
fetch('https://cloud.gvoice.app/api/get-files.php?api_key=gvoice_cloude_token_EXAMPLE_KEY_12345678');
POST

Delete File

https://cloud.gvoice.app/api/delete-file.php
const formData = new FormData();
formData.append('file_id', '12345');
formData.append('api_key', 'gvoice_cloude_token_EXAMPLE_KEY_12345678');

fetch('https://cloud.gvoice.app/api/delete-file.php', { method: 'POST', body: formData });

Images Endpoints

Specialized actions for your images collection.

POST

Upload Image

https://cloud.gvoice.app/api/upload-image.php
const formData = new FormData();
formData.append('image', fileInput.files[0]);
formData.append('api_key', 'gvoice_cloude_token_EXAMPLE_KEY_12345678');
formData.append('reduce_size', 'true');

fetch('https://cloud.gvoice.app/api/upload-image.php', { method: 'POST', body: formData });
GET

View One Image

https://cloud.gvoice.app/api/get-media-details.php
fetch('https://cloud.gvoice.app/api/get-media-details.php?api_key=gvoice_cloude_token_EXAMPLE_KEY_12345678&id=12345');
GET

View All Images

https://cloud.gvoice.app/api/get-images.php
fetch('https://cloud.gvoice.app/api/get-images.php?api_key=gvoice_cloude_token_EXAMPLE_KEY_12345678');
POST

Delete Image

https://cloud.gvoice.app/api/delete-file.php
const formData = new FormData();
formData.append('file_id', '12345');
formData.append('api_key', 'gvoice_cloude_token_EXAMPLE_KEY_12345678');

fetch('https://cloud.gvoice.app/api/delete-file.php', { method: 'POST', body: formData });

Videos Endpoints

Specialized actions for your videos collection.

POST

Upload Video

https://cloud.gvoice.app/api/upload-video.php
const formData = new FormData();
formData.append('video', fileInput.files[0]);
formData.append('api_key', 'gvoice_cloude_token_EXAMPLE_KEY_12345678');
formData.append('reduce_size', 'true');

fetch('https://cloud.gvoice.app/api/upload-video.php', { method: 'POST', body: formData });
GET

View One Video

https://cloud.gvoice.app/api/get-media-details.php
fetch('https://cloud.gvoice.app/api/get-media-details.php?api_key=gvoice_cloude_token_EXAMPLE_KEY_12345678&id=12345');
GET

View All Videos

https://cloud.gvoice.app/api/get-videos.php
fetch('https://cloud.gvoice.app/api/get-videos.php?api_key=gvoice_cloude_token_EXAMPLE_KEY_12345678');
POST

Delete Video

https://cloud.gvoice.app/api/delete-file.php
const formData = new FormData();
formData.append('file_id', '12345');
formData.append('api_key', 'gvoice_cloude_token_EXAMPLE_KEY_12345678');

fetch('https://cloud.gvoice.app/api/delete-file.php', { method: 'POST', body: formData });

Ready to integrate?

Create a free account to get your personal API key and start uploading in minutes. No credit card required.