openapi: 3.0.0 info: contact: name: Onfido url: https://public.support.onfido.com description: "\nCreate trust at onboarding and beyond with a complete, AI-powered digital\nidentity solution built to help you know your customers online. \nAutomation allows you to acquire new customers and reduce costs while\nmeeting global KYC and AML compliance." license: name: MIT title: Onfido Frame API version: v3.6 servers: - url: https://api.{region}.onfido.com/v3.6 variables: region: default: eu enum: - eu - us - ca security: - Token: [] tags: - name: Frame paths: /live_videos/{live_video_id}/frame: get: description: Returns the binary data representing a single frame from a live video. operationId: download_live_video_frame parameters: - description: The live video's unique identifier. in: path name: live_video_id required: true schema: format: uuid type: string responses: '200': content: '*/*': schema: format: binary type: string description: The live video frame's binary data. default: content: application/json: schema: $ref: '#/components/schemas/Error' description: Unexpected error summary: Download live video frame tags: - Frame /motion_captures/{motion_capture_id}/frame: get: description: Instead of the whole capture binary, a single frame can be downloaded using this endpoint. Returns the binary data representing the frame. operationId: download_motion_capture_frame parameters: - description: The motion capture's unique identifier. in: path name: motion_capture_id required: true schema: format: uuid type: string responses: '200': content: '*/*': schema: format: binary type: string description: The motion capture frame's binary data. default: content: application/json: schema: $ref: '#/components/schemas/Error' description: Unexpected error summary: Download motion capture frame tags: - Frame components: schemas: ErrorProperties: example: type: type message: message fields: key: '' properties: type: type: string message: type: string fields: additionalProperties: true type: object title: ErrorProperties type: object Error: example: error: type: type message: message fields: key: '' properties: error: $ref: '#/components/schemas/ErrorProperties' title: Error type: object securitySchemes: Token: in: header name: Authorization type: apiKey externalDocs: url: https://documentation.onfido.com