Source Code Extractor

Extract source code from websites, including HTML, CSS, and JavaScript.

Authentication

All API requests require authentication using an API key. You can create an API key in your dashboard.

Include your API key in the Authorization header of your requests:

Authorization: Bearer your_api_key

Credit Usage

Each API call consumes credits from your account. This service costs 3 credits per call.

Endpoints

POST/api/v1/source-code-extractor3 credits

Extract source code from a specified URL

Example Request

curl -X POST "https://api.goonlinetools.com/api/v1/source-code-extractor" \
-H "Authorization: Bearer your_api_key" \
-H "Content-Type: application/json" \
-d '{"url": "https://goonlinetools.com"}'

Example Response

{
"url": "https://goonlinetools.com",
"renderedContent": "<!DOCTYPE html>...",
"timestamp": "2025-04-01T16:07:30.698Z"
}

Additional Feature

This section dynamically renders API responses, including timestamps and additional features. For example, the "fullcode" feature ensures that all CSS and JS files, even from third-party CDNs, are included in the response.

curl -X POST "https://api.goonlinetools.com/api/v1/source-code-extractor" \
-H "Authorization: Bearer your_api_key" \
-H "Content-Type: application/json" \
-d '{"url": "https://goonlinetools.com", "fullcode": true}'

Error Handling

The API uses standard HTTP status codes to indicate the success or failure of a request. Error responses include a JSON object with an error message.

{
  "error": "Error message"
}

Common Status Codes

  • 200 OK: The request was successful
  • 400 Bad Request: The request was invalid
  • 401 Unauthorized: Invalid or missing API key
  • 402 Payment Required: Insufficient credits
  • 429 Too Many Requests: Rate limit exceeded
  • 500 Internal Server Error: Something went wrong on the server
Try Our APIs
Use our API Playground to test and explore our APIs. Make sure you are logged in to access this feature.