How to Use Linked API
Discover how to use Linked API with this step-by-step guide. Learn key features, practical tips, and best practices to get started quickly.
Register your account
To get started with the Linked API, head over to the registration page. Here, you need to fill in essential details such as your name, a valid email address, and a secure password. After submitting your information, look for an email from Linked API that contains a verification link. Clicking on this link is crucial as it activates your account, allowing you to access the platform’s functionalities.
Set up your profile
Once your account is validated, log in with your credentials. You will be directed to a profile setup page. Here, you can customize your profile by adding key information such as your job title, company affiliation, and a brief biography. A well-crafted profile not only enhances your visibility but also increases your chances of making meaningful connections on the platform. Be sure to make it concise yet informative, highlighting your professional journey and expertise to attract like-minded individuals.
Explore the dashboard
After setting up your profile, take a moment to navigate through the dashboard. This area serves as your main hub for interacting with the Linked API features. Familiarize yourself with the layout and the available options such as accessing real-time data, managing your API usage, and finding documentation for further assistance. Understanding where everything is located will significantly improve your efficiency in using the API.
Connect your LinkedIn account
To unleash the full potential of the Linked API, it’s vital to connect your LinkedIn account. Navigate to the API settings section and follow the instructions to link your LinkedIn profile. This integration enables you to perform various actions like sending messages, managing invitations, and tracking your posts—all from a single platform. Ensure that you grant the necessary permissions during the linking process to allow smooth operations.
Sending a connection request
Connecting with new professionals is a pivotal feature of the Linked API. To send a connection request, you can utilize the following API call:
POST "https://api.linkedapi.io/account/workflows" > '{ "actionType": "st.sendConnectionRequest",
"personUrl": "https://www.linkedin.com/in/person1",
"note": "It would be great to add you to my network!"}'
Replace the "personUrl" with the LinkedIn profile URL of the individual you wish to connect with. Including a personalized note expressing your intent adds a personal touch and increases the likelihood of acceptance.
Sending a message
Effective communication is essential for building professional relationships. The Linked API facilitates this by allowing you to send messages directly through the platform. For instance, to send a message, you can make the following API call:
POST "https://api.linkedapi.io/account/workflows" > '{ "actionType": "st.sendMessage",
"personUrl": "https://www.linkedin.com/in/person1",
"text": "Hello, how are you doing today? Hope everything is great!"}'
Here, update the "text" field to convey your message effectively. Engaging with your connections through direct messaging can lead to fruitful discussions and networking opportunities.
Reacting to a post
Engagement is key to fostering community and interaction on LinkedIn. You can react to posts made by your connections or other professionals using the Linked API. To do this, utilize the following API call:
POST "https://api.linkedapi.io/account/workflows" > '{ "actionType": "st.reactToPost",
"postUrl": "https://www.linkedin.com/posts/post1",
"reactionType": "celebrate"}'
In this call, replace the "postUrl" with the specific URL of the post you want to react to. Select an appropriate reaction, such as 'celebrate', 'like', or 'comment', to show your appreciation for the content shared. Engaging with content not only enhances your visibility but also encourages reciprocal action from others.