feat: export API map as clean structured JSON (GLA-49)#9
Merged
Conversation
Add "Export Map" button that produces a developer-readable API map file with one entry per unique endpoint. Each entry includes method, normalized URL, observation count, authentication headers, and clean request/response schemas. Available in both live and snapshot modes whenever endpoints are present. Separate from the raw snapshot export which retains individual requests and cookies. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
GLA-49 Export map
Export the full API map as a clean structured JSON file.
Done when the exported file can be understood by a developer who never saw the original requests. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
gladium-api-map-v1format)Export format example
{ "format": "gladium-api-map-v1", "endpointCount": 2, "endpoints": [ { "method": "GET", "url": "https://api.example.com/users/:id", "observations": 3, "authentication": [{ "header": "Authorization", "type": "string" }], "request": { "headers": [...], "body": null }, "response": { "headers": [...], "body": { "contentType": "json", "schema": { ... } } } } ] }Test plan
gladium-api-map-v1format with clean endpoint entriesauthenticationarray for endpoints with authseenCount)🤖 Generated with Claude Code