JoJ API Keys provide secure access to APIs listed on the JoJ API Marketplace, allowing you to integrate these APIs into your software and applications. You can manage your API keys — including creating new keys, deleting existing ones, or assigning custom names for easier organization. JoJ API supports multiple authentication methods using your API keys. Below are the available options, along with brief explanations and usage examples:Documentation Index
Fetch the complete documentation index at: https://docs.jojapi.com/llms.txt
Use this file to discover all available pages before exploring further.
1. X-JoJAPI-Key Header
Send your API key via the customX-JoJAPI-Key HTTP header.
Example:
2. Authorization Header
Pass your API key directly through theAuthorization header without any prefix.
Example:
3. Bearer Token
Use theAuthorization header with the Bearer scheme followed by your API key.
Example:
4. Basic Token
Send your API key using HTTP Basic Authentication. TheAuthorization header should contain the word Basic, followed by a base64-encoded string of apikey:apikey.
Example:
Note:
To encode:
echo -n "YOUR_API_KEY:YOUR_API_KEY" | base64
📌 Notes:
- Replace
YOUR_API_KEYwith your actual API key.
