# Fetch detailed information from an existing diff **GET /diffs/{id}** Fetch the result of a previously created diff with the [`POST /diffs` API endpoint](#operation-post-diffs). ## Servers ## Parameters ### Path parameters - **id** (string) UUID of an existing diff from which to fetch diff details ### Query parameters - **formats** (array[string]) A list of formats to render in the response. Possible values are `text`, `markdown`, `html` or `json`. If not provided defaults to render both `text` and `markdown` formats. ## Responses ### 200 Diff successfully retrieved #### Body: (object) - **id** (string) Unique id of your diff - **title** (string) The title of the last parsed definition - **public_url** (string) The public URL of your diff - **breaking** (boolean) Identifies if the diff includes breaking changes - **details** (array[object]) Details of each change as a list of diff items - **previous_version_url** (string) URL of previous version specification, in JSON format - **current_version_url** (string) URL of current version specification, in JSON format - **markdown** (string) The comparaison diff summary in markdown format - **html** (string) The comparaison diff summary in HTML format - **text** (string) The comparaison diff summary in plain text format ### 202 Diff is still being processed. Please try again later ### 404 Diff not found [Powered by Bump.sh](https://bump.sh)