Skip to main content

Getting Started with the API

Welcome to our API documentation. This guide will help you get started with accessing and using our API.

Getting an API Token

To use our API, you need to obtain an API token. Follow these steps:

  1. Sign Up / Log In:

    • Visit our Sign Up page to create an account.
    • If you already have an account, Log In.
  2. Generate API Token:

    • Navigate to the API section in your account settings.
    • Click on "Generate API Token".
    • Copy the token provided. Keep it secure and do not share it publicly.

Using the API Token

Once you have your API token, you can use it to authenticate your API requests. The token should be included in the Authorization header of your HTTP requests.

Example Request

Here’s an example of how to include your API token in a request using curl:

curl -X GET "https://api.example.com/v1/resource" \
-H "Authorization: Bearer YOUR_API_TOKEN"