JSON Nexus

Home

API

Pricing

Contact

JSON Nexus

ENDPOINTS

Create a channel

POST

https://www.json-nexus.com/api/v1/<url_uid>/<channel_name>

Channels are created with a POST call. Use your account URL UID and the requested channel name in the url of the call. The response given after succesful channel creation will include the channel key. This key will be required for anyone retrieving records from the channel if it is private. Please keep in mind that the channel name cannot contain characters that would be illegal in a URL.

Parameters:

FieldTypeDescriptionRequired
privateBooleanMark the channel as private. If not passed the channel will be private by defaultNo

Header:

FieldTypeDescriptionRequired
X-API-keyStringYour account API keyYes

Example:


import requests
                            
response = requests.request(
    'POST', 
    url='https://www.json-nexus.com/api/v1/<url_uid>/<channel_name>',
    params={'private': 'true'}, 
    headers={'X-API-Key': <api_key>}
)

import requests
                            
response = requests.request(
    'POST', 
    url='https://www.json-nexus.com/api/v1/<url_uid>/<channel_name>',
    params={'private': 'true'}, 
    headers={'X-API-Key': <api_key>}
)

Create a channel

POST

https://www.json-nexus.com/api/v1/<url_uid>/<channel_name>

Channels are created with a POST call. Use your account URL UID and the requested channel name in the url of the call. The response given after succesful channel creation will include the channel key. This key will be required for anyone retrieving records from the channel if it is private. Please keep in mind that the channel name cannot contain characters that would be illegal in a URL.

Parameters:

FieldTypeDescriptionRequired
privateBooleanMark the channel as private. If not passed the channel will be private by defaultNo

Header:

FieldTypeDescriptionRequired
X-API-keyStringYour account API keyYes

Example:


import requests
                            
response = requests.request(
    'POST', 
    url='https://www.json-nexus.com/api/v1/<url_uid>/<channel_name>',
    params={'private': 'true'}, 
    headers={'X-API-Key': <api_key>}
)

import requests
                            
response = requests.request(
    'POST', 
    url='https://www.json-nexus.com/api/v1/<url_uid>/<channel_name>',
    params={'private': 'true'}, 
    headers={'X-API-Key': <api_key>}
)

© JSON Nexus 2025