core / com.vmadalin.core.network.services / MarvelService / getCharacters

getCharacters

@GET("/v1/public/characters") abstract suspend fun getCharacters(@Query("apikey") apiKey: String, @Query("hash") hash: String, @Query("ts") timestamp: String, @Query("offset") offset: Int, @Query("limit") limit: Int): BaseResponse<CharacterResponse>

Fetches lists of comic characters with optional filters.

Parameters

apiKey - A unique identifier used to authenticate all calling to an API.

hash - A md5 digest of the ts parameter, private API key and public.

timestamp - A digital current record of the time.

offset - Skip the specified number of resources in the result set.

limit - Limit the result set to the specified number of resources.

Return
Response for comic characters resource.