Skip to main content
POST
/
api
/
wefunder
/
companies
/
posts
/wefunder/companies/posts
curl --request POST \
  --url https://api.anysite.io/api/wefunder/companies/posts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300,
  "post_type": "updates"
}
'
[
  {
    "id": 123,
    "@type": "WefunderPost",
    "document_title": "<string>",
    "post_type": "<string>",
    "visibility": "<string>",
    "text": "<string>",
    "content_html": "<string>",
    "published_at": 123,
    "created_at": 123,
    "updated_at": 123,
    "like_count": 123,
    "comment_count": 123,
    "repost_count": 123,
    "read_count": 123,
    "url": "<string>",
    "cover_image": "<string>",
    "tags": [],
    "author": {
      "name": "<string>",
      "@type": "WefunderPostAuthor",
      "id": 123,
      "bio": "<string>",
      "image": "<string>",
      "profile_url": "<string>",
      "investor_profile_id": 123,
      "is_wefunder_team": true
    },
    "subject": {
      "@type": "WefunderPostSubject",
      "id": 123,
      "name": "<string>",
      "alias": "<string>",
      "tagline": "<string>",
      "is_fund": true
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company slug ('riserobotics'), company URL or numeric company id

Minimum string length: 1
Examples:

"riserobotics"

"rejuvenatebio"

"188422"

count
integer
required

Number of feed items to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
post_type
enum<string>
default:updates

Feed item type to return

Available options:
updates,
investor_buzz,
all

Response

Successful Response

id
integer
required
@type
string
default:WefunderPost
document_title
string | null
post_type
string | null
visibility
string | null
text
string | null
content_html
string | null
published_at
integer | null
created_at
integer | null
updated_at
integer | null
like_count
integer | null
comment_count
integer | null
repost_count
integer | null
read_count
integer | null
url
string | null
cover_image
string | null
tags
string[]
author
object | null
subject
object | null