> ## Documentation Index
> Fetch the complete documentation index at: https://docs.etrnl.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Get unfulfilled queue items

Returns all unfulfilled queue items by the URL group ID.

<br />

## Headers

<ParamField header="API-Key" placeholder="Your Private API Key" type="string" required>
  Your organization's private API key.
</ParamField>

## URL Params

<ParamField path="id" placeholder="URL Group ID" type="string" required>
  The ID of the URL Group.
</ParamField>

<ResponseExample>
  ```json Successfully retrieved the URL Group theme={null}
  {
  		success: true,
  		queue: [
  			{
  				id: 399,
  				tagMetadata: {
  					nftId: 123
  				},
  				displayName: "John's NFT data",
  				pageId: null,
  				groupId: 190,
  				organizationId: 1275,
  				fulfillmentDate: null,
  				fulfilled: false,
  				creationDate: '2023-10-31T00:41:23.000Z'
  			}
  		]
      }
  ```
</ResponseExample>
