get_character_by_id
Retrieve detailed character information from the Star Wars universe using a character ID to access comprehensive data about specific Star Wars characters.
Instructions
Obtém informações detalhadas de um personagem pelo ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID do personagem |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "ID do personagem",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}