Socialgist Reddit Links
Reddit Links Search allows you to find outbound links that were contained in Reddit posts. The index is limited to the previous 3 months.
This source can be integrated with our Jobs feature and you can also use our Unify Transformer.
The complete Socialgist documentation about their endpoint can be found in their site here.
Portal
To integrate Socialgist News using our Portal, navigate to 'Dynamic Pipelines', create your Pipeline and select Socialgist Reddit Links Ingress in the Component Picker, configure your query and settings, then add to your Pipeline.
API
Below you can find some examples about how the Datastreamer API empowers you to build efficient data orchestration using our Socialgist partner.
Creating Data Collection Job
This request configures a new data collection job within your platform. It specifies to pull company
outbound links in Reddit posts. The job will run daily at 1 AM (every 24 hours).
curl --location 'https://api.platform.datastreamer.io/api/pipelines/<your-pipeline-id>/components/<your-component-id>/jobs?ready=true' \
--header 'apikey: <your-api-key>' \
--header 'Content-Type: application/json' \
--data \
'{
"job_name": "<job-name>",
"data_source": "socialgist_reddit_links",
"query": {
"query": "company"
},
"job_type": "periodic",
"schedule": "0 0 0 1/1 * ? *",
"max_documents": 10
}'
Updated about 1 month ago