Dev
Connector for the dev API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://dev.to/api - Auth:
header:api-key(pass your key via theapiKeyinput)
Operations
getarticles— GET /api/articles — Published articlesgetlatestarticles— GET /api/articles/latest — Published articles sorted by published dategetuserarticles— GET /api/articles/me — User's articlesgetuserallarticles— GET /api/articles/me/all — User's all articlesgetuserpublishedarticles— GET /api/articles/me/published — User's published articlesgetuserunpublishedarticles— GET /api/articles/me/unpublished — User's unpublished articles
Inputs
apiKey— your dev API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: getarticles
apiKey: <your key>