### RustMaps API - Map Management Source: https://api.rustmaps.com/docs/index Endpoints for creating, retrieving, and managing map generation requests. Includes methods to get maps by ID, seed and size, or download URL. ```APIDOC POST /v4/maps Creates a new map generation request. GET /v4/maps/{mapId} Get a map by id. Parameters: - mapId: The unique identifier of the map. GET /v4/maps/{size}/{seed} Get a map by seed and size. Parameters: - size: The desired size of the map. - seed: The seed value for map generation. GET /v4/maps/url Get a map by its download url. ``` -------------------------------- ### RustMaps API - Miscellaneous Endpoints Source: https://api.rustmaps.com/docs/index Endpoints for retrieving miscellaneous information such as custom map configurations and generation limits. ```APIDOC GET /v4/maps/custom/saved-configs Get all custom map configs. GET /v4/maps/limits Returns current map gen limits. ``` -------------------------------- ### RustMaps API - Custom Map Operations Source: https://api.rustmaps.com/docs/index Endpoints for managing custom maps, including retrieving settings, generating custom maps, and managing saved configurations. Some operations may require a subscription. ```APIDOC GET /v4/maps/{mapId}/settings Get custom map settings for a map. Parameters: - mapId: The ID of the map to retrieve settings for. POST /v4/maps/custom Used to generate custom maps. Provide an org ID header if the maps are supposed to be generated for an organization. GET /v4/maps/custom Returns default config for custom maps. POST /v4/maps/custom/saved-config Used to generate custom maps. Provide an org ID header if the maps are supposed to be generated for an organization. ``` -------------------------------- ### RustMaps API - Map Upload Source: https://api.rustmaps.com/docs/index Endpoint for uploading a new map to the RustMaps service. ```APIDOC POST /v4/maps/upload Upload a new map. ``` -------------------------------- ### RustMaps API - Search Functionality Source: https://api.rustmaps.com/docs/index Endpoints for searching maps based on filters or raw search criteria. ```APIDOC GET /v4/maps/filter/{filterId} Get maps from a filter id that was created on the homepage. Parameters: - filterId: The ID of the filter to use for searching. POST /v4/maps/search Search for maps using a raw post body. Not all settings need to be provided; only passing the size object, for example, will work. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.