Overview
Every request to the ProWebLook API must include a valid API key. Authentication is performed via a query parameter or request body field namedapi_key.
Keep your API key confidential. Do not expose it in client-side code, public repositories, or logs.
Passing Your API Key
You can pass the API key in two ways:- Query Parameter (GET)
- Request Body (POST)
Append
api_key as a URL query parameter:Error Responses
| HTTP Status | Code | Meaning |
|---|---|---|
401 | Invalid API key. | The provided api_key does not match any registered user. |
402 | Insufficient * API credits. | Your credit balance for the requested service has been exhausted. |
400 | Various | Missing or invalid parameters. |
Example: Invalid API Key
Example: Insufficient Credits
Getting Your API Key
- Sign up or log in at proweblook.com
- Navigate to Dashboard → API Keys
- Copy your key and store it securely (e.g., in an environment variable)
