https://api.petstoreapi.com/v1 — the live, production serverhttps://sandbox.petstoreapi.com/v1 — a testing server for development{{variable_name}}.POST /pets and extract the returned pet ID into a variable (e.g., {{pet_id}})GET /pets/{{pet_id}} — the variable automatically fills in the IDPUT /pets/{{pet_id}} — again, using the same variable{{pet_id}}.≡ in the top-right corner of the interface.https://api.petstoreapi.com/v1https://sandbox.petstoreapi.com/v1≡ icon).≡ icon).pet_idpet_1Nv0FGQ9RKHgCVdK (a sample pet ID from the Pet Store API)GET /pets/{id}).id, instead of typing a value directly, enter: {{pet_id}}{{pet_id}}, Apidog will show you the current value and scope of the variable.{{pet_id}} with the actual value (pet_1Nv0FGQ9RKHgCVdK) when sending the request.{{a}} represents a variable that will be replaced with its stored value, while {a} represents a path parameter in the API specification./pets/{id}, the {id} is a path parameter placeholder defined in the API spec.{{pet_id}} to reference a variable, which will be replaced with the actual pet ID value when the request is sent./pets/{{pet_id}} and the base URL is https://api.petstoreapi.com/v1, the actual request URL will be:https://api.petstoreapi.com/v1/pets/pet_1Nv0FGQ9RKHgCVdKhttps://api.petstoreapi.com/v1pet_id: pet_1Nv0FGQ9RKHgCVdKhttps://sandbox.petstoreapi.com/v1pet_id: pet_1Nv0FGQ9RKHgCVdK (same pet ID for testing)GET /pets/{id} and use {{pet_id}} as the path parameter.https://api.petstoreapi.com/v1/pets/pet_1Nv0FGQ9RKHgCVdKhttps://sandbox.petstoreapi.com/v1/pets/pet_1Nv0FGQ9RKHgCVdKglobal < module < environment < data < local.{{variable_name}}.