Skip to main content
POST
/
api
/
wefunder
/
companies
/wefunder/companies
curl --request POST \
  --url https://api.anysite.io/api/wefunder/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "name": "<string>",
    "@type": "WefunderCompany",
    "tagline": "<string>",
    "elevator_pitch": "<string>",
    "description": "<string>",
    "url": "<string>",
    "location": "<string>",
    "updated_at": 123,
    "website_url": "<string>",
    "image": "<string>",
    "cover_image": "<string>",
    "header_media_url": "<string>",
    "total_amount_raised": 123,
    "total_investor_count": 123,
    "is_funded": true,
    "is_active": true,
    "quality_score": 123,
    "currency": "<string>",
    "security_type": "<string>",
    "offering_type": "<string>",
    "funding_type": "<string>",
    "structure": "<string>",
    "pre_money_valuation": "<string>",
    "early_bird_valuation": "<string>",
    "min_investment": 123,
    "funding_target": 123,
    "minimum_target": 123,
    "maximum_target": 123,
    "testing_the_waters": true,
    "can_invest_now": true,
    "linkedin_url": "<string>",
    "twitter_url": "<string>",
    "facebook_url": "<string>",
    "instagram_url": "<string>",
    "youtube_url": "<string>",
    "blog_url": "<string>",
    "post_count": 123,
    "question_count": 123,
    "featured_investor_count": 123,
    "faq_count": 123,
    "highlights": [],
    "quick_facts": [],
    "team": [],
    "featured_investors": [],
    "investor_memos": [],
    "latest_fundraise": {
      "@type": "WefunderFundraise",
      "id": 123,
      "state": "<string>",
      "offering_type": "<string>",
      "funding_type": "<string>",
      "structure": "<string>",
      "security_type": "<string>",
      "currency": "<string>",
      "testing_the_waters": true,
      "can_invest_now": true,
      "min_investment": 123,
      "max_investment": 123,
      "funding_target": 123,
      "minimum_target": 123,
      "maximum_target": 123,
      "pre_money_valuation": "<string>",
      "early_bird_valuation": "<string>",
      "valuation_caption": "<string>",
      "funding_started_at": 123,
      "funding_closed_at": 123
    },
    "active_fundraises": [],
    "q_and_a": [],
    "faq": [],
    "recent_posts": []
  }
]

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') or company URL ('https://wefunder.com/riserobotics')

Minimum string length: 1
Examples:

"riserobotics"

"rejuvenatebio"

"https://wefunder.com/riserobotics"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
name
string
required
@type
string
default:WefunderCompany
tagline
string | null
elevator_pitch
string | null
description
string | null
url
string | null
location
string | null
updated_at
integer | null
website_url
string | null
image
string | null
cover_image
string | null
header_media_url
string | null
total_amount_raised
number | null
total_investor_count
integer | null
is_funded
boolean | null
is_active
boolean | null
quality_score
number | null
currency
string | null
security_type
string | null
offering_type
string | null
funding_type
string | null
structure
string | null
pre_money_valuation
string | null
early_bird_valuation
string | null
min_investment
number | null
funding_target
number | null
minimum_target
number | null
maximum_target
number | null
testing_the_waters
boolean | null
can_invest_now
boolean | null
linkedin_url
string | null
twitter_url
string | null
facebook_url
string | null
instagram_url
string | null
youtube_url
string | null
blog_url
string | null
post_count
integer | null
question_count
integer | null
faq_count
integer | null
highlights
object[]
quick_facts
string[]
team
object[]
investor_memos
object[]
latest_fundraise
object | null
active_fundraises
object[]
q_and_a
object[]
faq
object[]
recent_posts
object[]