Getting started with Ntanglenet APIs


This guide walks you through creating an account, getting your API key, and making your first request.

Prerequisites

  • A code editor
  • Basic familiarity with HTTP and REST APIs

1. Create an account

Sign up at our dashboard to get access to the API and your API keys.

2. Get your API key

After signing in, go to Settings → API keys and create a new key. Keep it secret and never commit it to version control.

# Use environment variables for API keys
export API_KEY="your-api-key-here"

3. Make your first request

Use your API key in the Authorization header:

curl -X GET "https://api.example.com/v1/me" \
  -H "Authorization: Bearer $API_KEY"

You should receive a JSON response with your account details. You’re ready to integrate our product into your app.

Next steps