Get Started

Socialgist Blog Links

The Blog Links Search Web Service allows you to find outbound links that were contained in blog posts.

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 Blog 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 news from blogs. The job will run daily at 1 AM (every 24 hours).

curl --location --request PUT 'https://dev.api.platform.datastreamer.io/api/pipelines/f43df6ae/components/jp821d8h/jobs/a80b431d-da60-4216-9a43-46bf21d7a4e9' \
      --header 'apikey: <your-api-key>' \
      --header 'Content-Type: application/json' \
      --data \
        '{
          "job_name": "<job-name>",
          "query": {
            "query": "company",
            "source_type": "blogs"
          },
          "schedule": "0 0 0 1/1 * ? *",
          "data_source": "socialgist_blog_links",
          "job_state": "ready",
          "state": "ready",
          "job_type": "periodic",
          "max_documents": 50,
          "document_count": 0
        }'