Quick Start

Start by getting or regenerating your API Keys

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can get your API Key by signing up to Netiks Cloud. You can also regenerate the API key from your Netiks Cloud Dashboard at any time.

The best way to interact with our API is to call on a request using your API Key.

Make your first request

To make your first request, send an authenticated request to the Developer Upload Single File API

Developer Upload Single File

post
Header parameters
Content-TypestringOptionalExample: multipart/form-data
x-api-keystringRequiredExample: ne-zwpVh1idj6InYwTWk866n1qrf
Body
filestring · binaryRequired
Responses
201

Developer Upload Single File

application/json
post
POST /api/v1/assets/developer-upload-file/ HTTP/1.1
Host: prod.backend.netikscloud.com
x-api-key: text
Content-Type: multipart/form-data
Accept: */*
Content-Length: 17

{
  "file": "binary"
}
{
  "message": "text",
  "asset": {
    "id": "text",
    "asset_name": "text",
    "storage_url": "text",
    "location": null,
    "location_name": null,
    "format": "text",
    "file_size": 1,
    "dimensions": null,
    "access": "text",
    "created_by": "text",
    "last_updated_by": "text",
    "created_at": "2025-08-23T06:29:47.477Z",
    "last_updated": "2025-08-23T06:29:47.477Z"
  }
}

Take a look at how you might call this method using our APIs, or via curl:

curl -X POST https://prod.backend.netikscloud.com/api/v1/assets/developer-upload-file/ \
  -H "x-api-key: ne-zwpVh1idj6InYwTWk866n1qrf" \
  -F "file=@/path/to/your/file.png"

Last updated