Retrieve information about a single submission using its ID.
External DocumentationTo learn more, visit the Bugcrowd documentation.

Basic Parameters

ParameterDescription
Activity FieldsSpecify which optional data fields to include in the activity property of each record.
Engagement FieldsSpecify which optional data fields to include in the engagement property of each record.
Identity FieldsSpecify which optional data fields to include in the identity property of each record.
IncludeSpecify which optional data fields to include in the response.
Organization FieldsSpecify which optional data fields to include in the organization property of each record.
Submission IDThe ID of the submission to retrieve.

Advanced Parameters

ParameterDescription
CVSS Vector FieldsSpecify which optional data fields to include in the cvss_vector property of each record.
Claim Ticket FieldsSpecify which optional data fields to include in the claim_ticket property of each record.
Comment FieldsSpecify which optional data fields to include in the comment property of each record.
Engagement Brief FieldsSpecify which optional data fields to include in the engagement_brief property of each record.
Events FieldsSpecify which optional data fields to include in the event property of each record.
External Issue FieldsSpecify which optional data fields to include in the external_issue property of each record.
File Attachment FieldsSpecify which optional data fields to include in the file_attachment property of each record.
Monetary RewardSpecify which optional data fields to include in the monetary_reward property of each record.
Payment FieldsSpecify which optional data fields to include in the payment property of each record.
Program FieldsSpecify which optional data fields to include in the program property of each record.
Submission FieldsSpecify which optional data fields to include in the submission property of each record.
Target FieldsSpecify which optional data fields to include in the target property of each record.
Target Group FieldsSpecify which optional data fields to include in the target_group property of each record.

Example Output

{
	"data": {
		"id": {
			"$ref": "https://bugcrowd.com/openapi/2025-04-23/external_elements.yml#/general_helpers/ValidUUID"
		},
		"type": "submission",
		"attributes": {
			"state": "new",
			"duplicate": true
		},
		"relationships": {
			"assignees": {
				"data": [
					{
						"id": {
							"$ref": "https://bugcrowd.com/openapi/2025-04-23/external_elements.yml#/general_helpers/ValidUUID"
						},
						"type": "identity"
					}
				],
				"links": {
					"related": {
						"href": "(NOT IMPLEMENTED YET)",
						"meta": {
							"count": 1,
							"total_hits": 1
						}
					}
				}
			}
		},
		"links": {
			"self": "/submissions/10000000-0000-0000-0000-000000000000"
		}
	},
	"included": [
		{
			"id": {
				"$ref": "https://bugcrowd.com/openapi/2025-04-23/external_elements.yml#/general_helpers/ValidUUID"
			},
			"type": "program",
			"attributes": {
				"code": "code"
			},
			"relationships": {
				"organization": {
					"data": {
						"id": {
							"$ref": "https://bugcrowd.com/openapi/2025-04-23/external_elements.yml#/general_helpers/ValidUUID"
						},
						"type": "organization"
					},
					"links": {
						"related": {
							"href": "/organizations/10000000-0000-0000-0000-000000000000"
						}
					}
				}
			},
			"links": {
				"self": "/programs/10000000-0000-0000-0000-000000000000"
			}
		}
	]
}

Workflow Library Example

Get Submission with Bugcrowd and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop