endpoints

Our API endpoints maximize your datasets and archives by allowing you to submit job requests for various data processing tasks and monitor their status in real-time. This helps create seamless workflows for validating datasets, balancing data distribution, automating preprocessing, and enhancing search capabilities.

Request Cloud Job

Endpoint: /jobs

Headers:
    "auth_token": (string)

Request JSON:
    {
        "job_type": (string),
        "inputs": (dict or None)
    }

Response:
    200: {"status_endpoint": (string)}
    401: {"error": "Not authenticated"}
    500: {"error": "Internal server error"}

Check Job Status

Endpoint: (status_endpoint)

Headers:
    "auth_token": (string)

Response:
    200: {
        "status": (string)
        "results": (dict or None)
        "error": (string or None)
    }
    401:{"error": "Not authenticated"}
    500:{"error": "Internal server error"}