Skip to main content
The Get Slide node retrieves detailed information about a specific slide in a Google Slides presentation, including all elements, their IDs, and properties. This is an AI-powered node that can understand natural language instructions.

When to Use It

  • Inspect slide content and structure
  • Get element IDs for use in other operations
  • Analyze existing presentations before modifications
  • Retrieve slide information for workflow decisions
  • Debug presentation structures
  • Build dynamic workflows based on slide content

Inputs

FieldTypeRequiredDescription
PresentationTextYesGoogle Slides presentation URL or ID
Slide NumberNumberYesPosition of the slide to retrieve (1-based indexing)

Output

Returns comprehensive slide information with all elements:
{
  "slide_id": "SLIDE_123ABC456DEF",
  "slide_number": 2,
  "elements": [
    {
      "element_id": "ELEMENT_789GHI012JKL",
      "element_type": "TEXT_BOX",
      "alt_text": "title_text",
      "text_content": "Monthly Report",
      "position": {"x": 100, "y": 50},
      "dimensions": {"width": 400, "height": 80}
    },
    {
      "element_id": "ELEMENT_345MNO678PQR", 
      "element_type": "IMAGE",
      "alt_text": "company_logo",
      "position": {"x": 50, "y": 150},
      "dimensions": {"width": 200, "height": 100}
    }
  ],
  "total_elements": 2
}

Credit Cost

  • Cost per run: 1 credit

Tips

  • Use element IDs from output in other Slides operations
  • Check alt text to identify specific elements
  • Combine with List Elements for multi-slide analysis
I