API Documentation

Getting Started

Learn how to integrate PremiumGFX into your applications

Welcome to the PremiumGFX API documentation. Our API allows you to programmatically access our vast collection of design resources, manage downloads, and retrieve user information.

Authentication

All API requests require authentication using an API key. Include your API key in the header of each request:

Authorization: Bearer YOUR_API_KEY

Please log in to generate or manage your API key.

Base URL

All API requests should be made to:

https://premiumgfx.shop/api/v1

API Endpoints

Explore our available API endpoints and their usage

Code Examples

Sample code snippets to help you get started


const apiKey = 'YOUR_API_KEY';
const apiUrl = 'https://api.premiumgfx.com/v1';

async function listResources() {
  const response = await fetch(`${apiUrl}/resources?page=1&limit=10`, {
    headers: {
      'Authorization': `Bearer ${apiKey}`,
    },
  });
  const data = await response.json();
  console.log(data);
}

listResources();
                                    

Need Help?

If you have any questions or need assistance, don't hesitate to reach out to our support team.

Contact Support