Authentication
Datastreamer API Authentication details.
Datastreamer uses API keys for authorization. All requests must be made using HTTPS.
Obtaining an API Key
Each client utilizing Datastreamer services can obtain a private API key by contacting support at [email protected] or by registering Portal Registration
Using your API Key
A Datastreamer API Key is custom generated based on the customer's information provided and is unique for every customer. The API expects the key to be within the header of each call, as depicted below.
curl --location --request POST 'https://api.platform.datastreamer.io/api/search' \
--header 'Content-Type: application/json' \
--header 'apikey: YOUR_API_KEY' \
--data-raw '{
"query": {
"from": 0,
"size": 10,
"query": "New York",
"data_sources": [
"opoint_news"
]
}
}
Updated about 1 month ago