Using the API
Last updated May 17, 2024
CreatorKit's API allows developers to automate and extend the platform’s capabilities. Here's a quick guide to getting started:
Introduction
Integrate CreatorKit’s powerful features into your own applications using the API. This guide will help you set up and use the API efficiently.
Step-by-Step Guide
- Obtain API Key
- Log in to your CreatorKit account and navigate to the "API Settings" section to generate your API key.
- Read the Documentation
- Access the API documentation to understand the available endpoints, request formats, and response structures.
- Authenticate Requests
- Use your API key to authenticate API requests. Include it in the headers of your HTTP requests for secure access.
- Example Request
- Send a GET request to the
/projects
endpoint to retrieve a list of your projects: - curl -H "Authorization: Bearer YOUR_API_KEY" https://api.creatorkit.com/v1/projects
- Create a New Project
- Use the POST
/projects
endpoint to create a new project. Include necessary parameters like project name and type in the request body.
- Handle Responses
- Parse the JSON responses to integrate CreatorKit’s functionality into your application. Handle errors and edge cases as specified in the documentation.
For detailed documentation and advanced use cases, visit our API documentation or contact support.
Was this article helpful?