# Get Guidances GET https://fai.buildwithfern.com/guidance/{domain} Reference: https://buildwithfern.com/learn/docs/ai-features/ask-fern/api-reference/guidance/get-guidances ## OpenAPI Specification ```yaml openapi: 3.1.1 info: title: Get Guidances version: endpoint_guidance.get_guidances paths: /guidance/{domain}: get: operationId: get-guidances summary: Get Guidances tags: - - subpackage_guidance parameters: - name: domain in: path required: true schema: type: string - name: page in: query description: The page number for pagination required: false schema: type: - integer - 'null' - name: limit in: query description: The number of documents per page required: false schema: type: - integer - 'null' - name: Authorization in: header description: >- Bearer authentication of the form `Bearer `, where token is your auth token. required: true schema: type: string responses: '200': description: Successful Response content: application/json: schema: $ref: '#/components/schemas/GetGuidancesResponse' '422': description: Validation Error content: {} components: schemas: Guidance: type: object properties: domain: type: string context: type: array items: type: string document: type: string guidance_id: type: string created_at: type: string format: date-time updated_at: type: string format: date-time required: - domain - context - document - guidance_id - created_at - updated_at PaginationResponse: type: object properties: total: type: integer page: type: integer limit: type: integer required: - total - page - limit GetGuidancesResponse: type: object properties: guidances: type: array items: $ref: '#/components/schemas/Guidance' description: List of guidance documents for the domain pagination: $ref: '#/components/schemas/PaginationResponse' description: Pagination information for the guidance document list required: - guidances - pagination ```