# Forem API V1 **Provider:** Forem API V1 **Category:** search **Base URL:** `https://dev.to/api` **Auth:** api-key — `api-key: YOUR_API_KEY` **Rate Limit:** Not officially published **Free Tier:** Yes — available **Pricing:** Enterprise / contact sales (subscription) **Docs:** https://dev.to/api ## Description Access Forem articles, users and other resources via API. For a real-world example of Forem in action, check out DEV. All endpoints can be accessed with the 'api-key' header and a accept header, but some of them are accessible publicly without authentica ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | POST | `https://dev.to/api/api/admin/users` | Invite a User | | GET | `https://dev.to/api/api/articles` | Published articles | | POST | `https://dev.to/api/api/articles` | Publish article | | GET | `https://dev.to/api/api/articles/latest` | Published articles sorted by published date | | GET | `https://dev.to/api/api/articles/me` | User's articles | | GET | `https://dev.to/api/api/articles/me/all` | User's all articles | | GET | `https://dev.to/api/api/articles/me/published` | User's published articles | | GET | `https://dev.to/api/api/articles/me/unpublished` | User's unpublished articles | ## Authentication API key in the request header (api-key) ``` api-key: YOUR_API_KEY ``` ## Sample Request ```bash curl -X GET 'https://dev.to/api/api/admin/users' \ -H 'api-key: YOUR_API_KEY' ``` ## Sample Response ```json {} ``` ## Pricing Details Free with Forem/DEV.to account. Open-source community platform API. --- *Source: [API Map](https://apimap.dev/apis/forem-api-v1/) — CC BY 4.0*