Skip to main content
POST
/
api
/
wantedly
/
companies
/
stories
/wantedly/companies/stories
curl --request POST \
  --url https://api.anysite.io/api/wantedly/companies/stories \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "title": "<string>",
    "@type": "@wantedly_story",
    "text": "<string>",
    "category": "<string>",
    "published_at": "<string>",
    "created_at": "<string>",
    "like_count": 123,
    "image": "<string>",
    "url": "<string>",
    "author": {
      "id": 123,
      "@type": "@wantedly_story_author",
      "name": "<string>",
      "position": "<string>",
      "image": "<string>",
      "url": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company alias (the URL segment in /companies/{alias})

Minimum string length: 1
Example:

"wantedly"

count
integer
required

Max number of results

Required range: x >= 1
Example:

20

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
title
string
required
@type
string
default:@wantedly_story
text
string | null
category
string | null
published_at
string | null
created_at
string | null
like_count
integer | null
image
string | null
url
string | null
author
WantedlyStoryAuthor · object