NotexAI
  • Quickstart
  • Python SDK
  • Authentication
  • Examples
    • Navigation
    • Scraping Flow
  • Browser Sessions
    • Session Management
    • Start Session
    • Close Session
    • Health
  • Browser Navigation
    • Observe Page
    • Step In Page
    • Scrape Data
Powered by GitBook
On this page
  • Base URL
  • Authentication
  • Response Codes

Authentication

PreviousPython SDKNextNavigation

Last updated 4 months ago

Base URL

We enforce HTTPS in every request to ensure data security and integrity. The API does not support HTTP. All requests should use the following base URL:

https://api.notexai.pro

Authentication

NotexAI uses API keys for authentication. You can obtain your API key for free on our .

Key Security

  • Keep your keys secure! Do not share them or expose them in client-side code.

  • For production requests, securely load your key from an environment variable or another secure service in your backend server.

Header Format

All REST API requests should include your API key in a Bearer HTTP header:

'Bearer': YOUR_API_KEY

Response Codes

NotexAI uses standard HTTP codes to indicate the success or failure of your requests:

Status Code
Description

200

Successful request.

400

Check that the parameters were correct.

401

The API key used was missing.

403

The API key used was invalid.

404

The resource was not found.

429

The rate limit was exceeded.

5xx

Indicates an error with NotexAI servers.

API Keys Dashboard