For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Book a demoLog inStart for free
  • Getting started
    • Overview
    • How it works
    • Quickstart
    • Project structure
    • Customer showcase
    • Changelog
  • Configuration
    • Overview
    • Site-level settings
    • Page-level settings
  • Writing content
    • Markdown basics
    • Rich media in Markdown
    • Fern Editor
    • Reusable snippets
  • AI features
    • Overview
    • Fern Writer
    • AI-generated examples
    • Markdown access
      • Overview
      • Customize LLM output
      • Agent directives
      • Analytics and integration
    • MCP server
    • API catalog discovery
      • Overview
        • Overview
          • POSTCreate Guidance
          • GETGet Guidance By Id
          • DELDelete Guidance By Id
          • PATCHUpdate
          • GETGet Guidances
  • Public API
    • GETJWT from Fern API key
    • GETAlgolia search credentials
    • GETCurrent user information
  • Fern Writer API
    • GETGet Fern Writer Install Link
Checking status...
SOC2Soc 2 Type II
© 2026 Fern • Birch Solutions, Inc., a Postman company

Documentation

SDKsDocsAsk FernCLI Reference

API Definitions

OpenAPIAsyncAPIOpenRPCgRPC

Resources

BlogSupportPricing

Company

Brand KitPrivacy PolicyTerms of Service
LogoLogo
Book a demoLog inStart for free
AI featuresAsk FernAPI referenceGuidance

Get Guidances

||View as Markdown|
GET
/guidance/:domain
GET
/guidance/:domain
$curl -G https://fai.buildwithfern.com/guidance/domain \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d page=1 \
> -d limit=10
1{
2 "guidances": [
3 {
4 "domain": "cybersecurity",
5 "context": [
6 "network security",
7 "data protection"
8 ],
9 "document": "Ensure all endpoints are secured with multi-factor authentication and encrypted communication channels.",
10 "guidance_id": "guidance-12345",
11 "created_at": "2024-01-15T09:30:00Z",
12 "updated_at": "2024-04-10T14:45:00Z"
13 }
14 ],
15 "pagination": {
16 "total": 25,
17 "page": 1,
18 "limit": 10
19 }
20}
Was this page helpful?
Previous

Update

Next

Get Recent Queries

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

domainstringRequired

Query parameters

pageinteger or nullOptional
The page number for pagination
limitinteger or nullOptional
The number of documents per page

Response

Successful Response
guidanceslist of objects
List of guidance documents for the domain
paginationobject
Pagination information for the guidance document list

Errors

422
Unprocessable Entity Error