Cost / request

$0.01

Response format

JSON

Protocol

REST

About this endpoint

Retrieve the full content and metadata for a specific LinkedIn post by its URN or URL. Returns the post body, media attachments, engagement counts, and author information. Core endpoint for content analysis and monitoring workflows.

Use cases

Analyze specific high-performing posts for content strategy
Monitor mentions and relevant industry discussions
Archive important professional content for research

Parameters

NameInTypeRequiredDescription
urlquerystringrequiredDefault: https://www.linkedin.com/feed/update/urn:li:activity:7219434359085252608/

Responses

200

{
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean"
    },
    "message": {
      "type": "string"
    },
    "data": {
      "type": "object",
      "properties": {
        "isBrandPartnership": {
          "type": "boolean"
        },
        "text": {
          "type": "string"
        },
        "totalReactionCount": {
          "type": "integer"
        },
        "likeCount": {
          "type": "integer"
        },
        "appreciationCount": {
          "type": "integer"
        },
        "empathyCount": {
          "type": "integer"
        },
        "praiseCount": {
          "type": "integer"
        },
        "commentsCount": {
          "type": "integer"
        },
        "repostsCount": {
          "type": "integer"
        },
        "shareUrl": {
          "type": "string"
        },
        "postedAt": {
          "type": "string"
        },
        "postedDate": {
          "type": "string"
        },
        "postedDateTimestamp": {
          "type": "integer"
        },
        "urn": {
          "type": "string"
        },
        "shareUrn": {
          "type": "string"
        },
        "author": {
          "type": "object",
          "properties": {
            "id": {
              "type": "integer"
            },
            "firstName": {
              "type": "string"
            },
            "lastName": {
              "type": "string"
            },
            "headline": {
              "type": "string"
            },
            "username": {
              "type": "string"
            },
            "url": {
              "type": "string"
            },
            "profilePictures": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "width": {
                    "type": "integer"
                  },
                  "height": {
                    "type": "integer"
                  },
                  "url": {
                    "type": "string"
                  }
                }
              }
            },
            "urn": {
              "type": "string"
            }
          }
        },
        "company": {
          "type": "object"
        },
        "document": {
          "type": "object"
        },
        "celebration": {
          "type": "object"
        },
        "poll": {
          "type": "object"
        },
        "article": {
          "type": "object",
          "properties": {
            "title": {
              "type": "string"
            },
            "subtitle": {
              "type": "string"
            },
            "link": {
              "type": "string"
            },
            "newsletter": {
              "type": "object"
            }
          }
        },
        "entity": {
          "type": "object"
        }
      }
    }
  }
}

Agent / Developer Schema

Machine-readable formats for integrating this endpoint into AI agents and toolchains.

{
  "operationId": "Get_Post",
  "method": "get",
  "path": "/get-post",
  "summary": "Get Post",
  "description": "Get post details",
  "parameters": [
    {
      "name": "url",
      "in": "query",
      "required": true,
      "schema": {
        "type": "string",
        "default": "https://www.linkedin.com/feed/update/urn:li:activity:7219434359085252608/"
      }
    }
  ],
  "responses": [
    {
      "statusCode": "200",
      "description": "200",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "success": {
                "type": "boolean"
              },
              "message": {
                "type": "string"
              },
              "data": {
                "type": "object",
                "properties": {
                  "isBrandPartnership": {
                    "type": "boolean"
                  },
                  "text": {
                    "type": "string"
                  },
                  "totalReactionCount": {
                    "type": "integer"
                  },
                  "likeCount": {
                    "type": "integer"
                  },
                  "appreciationCount": {
                    "type": "integer"
                  },
                  "empathyCount": {
                    "type": "integer"
                  },
                  "praiseCount": {
                    "type": "integer"
                  },
                  "commentsCount": {
                    "type": "integer"
                  },
                  "repostsCount": {
                    "type": "integer"
                  },
                  "shareUrl": {
                    "type": "string"
                  },
                  "postedAt": {
                    "type": "string"
                  },
                  "postedDate": {
                    "type": "string"
                  },
                  "postedDateTimestamp": {
                    "type": "integer"
                  },
                  "urn": {
                    "type": "string"
                  },
                  "shareUrn": {
                    "type": "string"
                  },
                  "author": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "integer"
                      },
                      "firstName": {
                        "type": "string"
                      },
                      "lastName": {
                        "type": "string"
                      },
                      "headline": {
                        "type": "string"
                      },
                      "username": {
                        "type": "string"
                      },
                      "url": {
                        "type": "string"
                      },
                      "profilePictures": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "width": {
                              "type": "integer"
                            },
                            "height": {
                              "type": "integer"
                            },
                            "url": {
                              "type": "string"
                            }
                          }
                        }
                      },
                      "urn": {
                        "type": "string"
                      }
                    }
                  },
                  "company": {
                    "type": "object"
                  },
                  "document": {
                    "type": "object"
                  },
                  "celebration": {
                    "type": "object"
                  },
                  "poll": {
                    "type": "object"
                  },
                  "article": {
                    "type": "object",
                    "properties": {
                      "title": {
                        "type": "string"
                      },
                      "subtitle": {
                        "type": "string"
                      },
                      "link": {
                        "type": "string"
                      },
                      "newsletter": {
                        "type": "object"
                      }
                    }
                  },
                  "entity": {
                    "type": "object"
                  }
                }
              }
            }
          },
          "example": {
            "success": true,
            "message": "",
            "data": {
              "isBrandPartnership": false,
              "text": "Fi is continuing to scale revenue so we're growing the Product team. We're looking for a talented Retention PM to help us drive subscription revenue. \n\nCheck out the link below if you fit the bill or share with folks in your network who do. Bonus points for dog lovers!",
              "totalReactionCount": 123,
              "likeCount": 107,
              "appreciationCount": 2,
              "empathyCount": 4,
              "praiseCount": 10,
              "commentsCount": 10,
              "repostsCount": 13,
              "shareUrl": "https://www.linkedin.com/posts/darrellstone3_fi-senior-product-manager-subscriber-activity-7219379021761916928-RmeH",
              "postedAt": "7mo",
              "postedDate": "2024-07-17 20:14:41.81 +0000 UTC",
              "postedDateTimestamp": 1721247281810,
              "urn": "7219434359085252608",
              "shareUrn": "7219379021170569218",
              "author": {
                "id": 72453685,
                "firstName": "Darrell",
                "lastName": "Stone",
                "headline": "VP of Product at Fi",
                "username": "darrellstone3",
                "url": "https://www.linkedin.com/in/darrellstone3",
                "profilePictures": [
                  {
                    "width": 100,
                    "height": 100,
                    "url": "https://media.licdn.com/dms/image/v2/D4E03AQE9DiKLEuaRBw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1672877997618?e=1745452800&v=beta&t=nXZkXtDvoYcYYl_PQBSjvZ2fZG_LK0_dBplEBKxPerQ"
                  },
                  {
                    "width": 200,
                    "height": 200,
                    "url": "https://media.licdn.com/dms/image/v2/D4E03AQE9DiKLEuaRBw/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1672877997618?e=1745452800&v=beta&t=r59DRemhJt0Hs_RCEBSM6EFZJ-k6cE4jKtNpYC1vkV4"
                  },
                  {
                    "width": 400,
                    "height": 400,
                    "url": "https://media.licdn.com/dms/image/v2/D4E03AQE9DiKLEuaRBw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1672877997618?e=1745452800&v=beta&t=BLFbP8scBtwgrBninvBBxEEGfXYlLnoi8YWPa4mFAWc"
                  },
                  {
                    "width": 800,
                    "height": 800,
                    "url": "https://media.licdn.com/dms/image/v2/D4E03AQE9DiKLEuaRBw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1672877997618?e=1745452800&v=beta&t=VcOcVB8b9sTQj5n-6DuobNksVahSbfZZZr_O5qG5WRE"
                  }
                ],
                "urn": "ACoAAARRjjUB3H1jzv8Dhulek2yv9xcnUjJLXXA"
              },
              "company": {},
              "document": {},
              "celebration": {},
              "poll": {},
              "article": {
                "title": "Fi - Senior Product Manager - Subscriber Retention",
                "subtitle": "jobs.lever.co",
                "link": "https://jobs.lever.co/fi/65291b62-069f-4bb4-a36f-908171471c33",
                "newsletter": {}
              },
              "entity": {}
            }
          }
        }
      }
    }
  ]
}

Pricing

$0.01per successful request

Credits are deducted from your agntdata balance on each successful API call. Failed requests (4xx/5xx) are not charged.

Related endpoints

Start using this endpoint

Generate your API key and make your first call in under a minute. Free tier available with transparent pricing.

LinkedIn post APIpost content dataLinkedIn post lookupLinkedIn APILinkedIn data APILinkedIn scraper API