# Get Guidance By Id GET https://fai.buildwithfern.com/guidance/{domain}/{guidance_id} Reference: https://buildwithfern.com/learn/docs/ai-features/ask-fern/api-reference/guidance/get-guidance-by-id ## OpenAPI Specification ```yaml openapi: 3.1.1 info: title: Get Guidance By Id version: endpoint_guidance.get_guidance_by_id paths: /guidance/{domain}/{guidance_id}: get: operationId: get-guidance-by-id summary: Get Guidance By Id tags: - - subpackage_guidance parameters: - name: domain in: path required: true schema: type: string - name: guidance_id in: path required: true schema: type: string - 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/GetGuidanceResponse' '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 GetGuidanceResponse: type: object properties: guidance: $ref: '#/components/schemas/Guidance' description: The requested guidance document required: - guidance ```